summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-28 12:26:01 +0200
committerxengineering <me@xengineering.eu>2023-04-28 12:26:01 +0200
commit2d9e1f6aef7abcd436f5cd5e2f5b5974b329b33e (patch)
tree72271bfa75633e1686f65e56bab9c1ac8b3b85fa
parentf624c71a26a522b2ea387a9f7e9f6ec84341b704 (diff)
downloadceres-2d9e1f6aef7abcd436f5cd5e2f5b5974b329b33e.tar
ceres-2d9e1f6aef7abcd436f5cd5e2f5b5974b329b33e.tar.zst
ceres-2d9e1f6aef7abcd436f5cd5e2f5b5974b329b33e.zip
Replace simple.css submodule by release copy
This is way simpler to handle since you can get a full tarball of Ceres with everything included which is necessary to run it. The LICENSE of simple.css allows such a copy and stays inside the copy to make clear that this folder uses the simple.css license and not the one of Ceres.
-rw-r--r--.gitmodules3
l---------data/static/style.css2
m---------simple.css0
-rw-r--r--simple.css-2.2.0/.github/workflows/minify-css.yml21
-rw-r--r--simple.css-2.2.0/.gitignore1
-rw-r--r--simple.css-2.2.0/CONTRIBUTING.md13
-rw-r--r--simple.css-2.2.0/LICENSE21
-rw-r--r--simple.css-2.2.0/README.md11
-rw-r--r--simple.css-2.2.0/index.html1103
-rw-r--r--simple.css-2.2.0/package.json30
-rw-r--r--simple.css-2.2.0/screenshot.pngbin0 -> 81419 bytes
-rw-r--r--simple.css-2.2.0/simple-v1.css511
-rw-r--r--simple.css-2.2.0/simple-v1.min.css1
-rw-r--r--simple.css-2.2.0/simple.css673
-rw-r--r--simple.css-2.2.0/simple.min.css1
15 files changed, 2387 insertions, 4 deletions
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index a3875af..0000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "simple.css"]
- path = simple.css
- url = https://github.com/kevquirk/simple.css.git
diff --git a/data/static/style.css b/data/static/style.css
index c954338..e73301c 120000
--- a/data/static/style.css
+++ b/data/static/style.css
@@ -1 +1 @@
-../../simple.css/simple.min.css \ No newline at end of file
+../../simple.css-2.2.0/simple.min.css \ No newline at end of file
diff --git a/simple.css b/simple.css
deleted file mode 160000
-Subproject b8f82ae51e294cb9540147f7fe212dedd1f3cb2
diff --git a/simple.css-2.2.0/.github/workflows/minify-css.yml b/simple.css-2.2.0/.github/workflows/minify-css.yml
new file mode 100644
index 0000000..b359b34
--- /dev/null
+++ b/simple.css-2.2.0/.github/workflows/minify-css.yml
@@ -0,0 +1,21 @@
+name: Minify CSS
+
+on:
+ push
+
+jobs:
+ minify:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Auto Minify
+ uses: nizarmah/auto-minify@master
+
+ # Auto commits minified files to the repository
+ # Ignore it if you don't want to commit the files to the repository
+ - name: Auto committing minified files
+ uses: stefanzweifel/git-auto-commit-action@v3.0.0
+ with:
+ commit_message: "Github Action: Auto Minified JS and CSS files"
+ branch: ${{ github.ref }}
diff --git a/simple.css-2.2.0/.gitignore b/simple.css-2.2.0/.gitignore
new file mode 100644
index 0000000..e43b0f9
--- /dev/null
+++ b/simple.css-2.2.0/.gitignore
@@ -0,0 +1 @@
+.DS_Store
diff --git a/simple.css-2.2.0/CONTRIBUTING.md b/simple.css-2.2.0/CONTRIBUTING.md
new file mode 100644
index 0000000..5a893e5
--- /dev/null
+++ b/simple.css-2.2.0/CONTRIBUTING.md
@@ -0,0 +1,13 @@
+If you want to get involved in making Simple.css better, please feel free to submit a pull request with any additions or changed you think would be suitable.
+
+Alternatively, if you're not a coder, or don't want to submit a pull request, feel free to [submit an issue](https://github.com/kevquirk/simple.css/issues).
+
+## Contributing
+
+If you decide to contribute to this project, please edit the `simple.css`, once I merge your change, I will minify it myself.
+
+If you do add contributions, please add verbose commenting so I can understand the rationale for the changes/additions you are proposing.
+
+Thanks again for wanting to contribute to this project!
+
+ -- Kev
diff --git a/simple.css-2.2.0/LICENSE b/simple.css-2.2.0/LICENSE
new file mode 100644
index 0000000..c496ecf
--- /dev/null
+++ b/simple.css-2.2.0/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020 Simple.css (Kev Quirk)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/simple.css-2.2.0/README.md b/simple.css-2.2.0/README.md
new file mode 100644
index 0000000..7d52002
--- /dev/null
+++ b/simple.css-2.2.0/README.md
@@ -0,0 +1,11 @@
+# Simple.css {}
+
+Simple.css is a CSS template that allows you to make a good looking website really quickly.
+
+**Find out more at [https://simplecss.org](https://simplecss.org).**
+
+![Screenshot of Simple.css](screenshot.png)
+
+## Supported Browsers
+
+Any evergreen browser > IE11 (why is IE still a thing?)
diff --git a/simple.css-2.2.0/index.html b/simple.css-2.2.0/index.html
new file mode 100644
index 0000000..22bff80
--- /dev/null
+++ b/simple.css-2.2.0/index.html
@@ -0,0 +1,1103 @@
+<!doctype html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Simple.css Test Page</title>
+ <!-- The following are some stylesheets for testing -->
+ <!-- Sanitize.css reset -->
+ <!-- <link href="https://unpkg.com/sanitize.css" rel="stylesheet" /> -->
+ <!-- Latest release version of Simple.css -->
+ <!-- <link rel="stylesheet" href="https://unpkg.com/simpledotcss/simple.css"> -->
+ <!-- Latest commit from GitHub -->
+ <!-- <link rel="stylesheet" href="https://cdn.simplecss.org/simple.css"> -->
+ <!-- Local version -->
+ <link rel="stylesheet" href="simple.css">
+</head>
+
+<body id="top">
+ <header>
+ <h1>Simple.css Test Page</h1>
+ <p>This is a test page filled with common HTML elements.</p>
+ <nav>
+ <ul>
+ <li><a href="#text">Text</a></li>
+ <li><a href="#embedded">Embedded content</a></li>
+ <li><a href="#forms">Form elements</a></li>
+ <li><a href="https://simplecss.org/">Project homepage</a></li>
+ <li><a href="https://github.com/kevquirk/simple.css">GitHub repo</a></li>
+ </ul>
+ </nav>
+ </header>
+ <nav>
+ <ul>
+ <li>
+ <a href="#text">Text</a>
+ <ul>
+ <li><a href="#text__headings">Headings</a></li>
+ <li><a href="#text__paragraphs">Paragraphs</a></li>
+ <li><a href="#text__lists">Lists</a></li>
+ <li><a href="#text__blockquotes">Blockquotes</a></li>
+ <li><a href="#text__asides">Asides</a></li>
+ <li><a href="#text__details">Details / Summary</a></li>
+ <li><a href="#text__address">Address</a></li>
+ <li><a href="#text__hr">Horizontal rules</a></li>
+ <li><a href="#text__tables">Tabular data</a></li>
+ <li><a href="#text__code">Code</a></li>
+ <li><a href="#text__sections">Sections</a></li>
+ <li><a href="#text__inline">Inline elements</a></li>
+ <li><a href="#text__comments">HTML Comments</a></li>
+ </ul>
+ </li>
+ <li>
+ <a href="#embedded">Embedded content</a>
+ <ul>
+ <li><a href="#embedded__images">Images</a></li>
+ <li><a href="#embedded__bgimages">Background images</a></li>
+ <li><a href="#embedded__audio">Audio</a></li>
+ <li><a href="#embedded__video">Video</a></li>
+ <li><a href="#embedded__canvas">Canvas</a></li>
+ <li><a href="#embedded__meter">Meter</a></li>
+ <li><a href="#embedded__progress">Progress</a></li>
+ <li><a href="#embedded__svg">Inline SVG</a></li>
+ <li><a href="#embedded__iframe">IFrames</a></li>
+ <li><a href="#embedded__embed">Embed</a></li>
+ <li><a href="#embedded__object">Object</a></li>
+ <li><a href="#embedded__dialog">Dialog</a></li>
+ </ul>
+ </li>
+ <li>
+ <a href="#forms">Form elements</a>
+ <ul>
+ <li><a href="#forms__input">Input fields</a></li>
+ <li><a href="#forms__select">Select menus</a></li>
+ <li><a href="#forms__checkbox">Checkboxes</a></li>
+ <li><a href="#forms__radio">Radio buttons</a></li>
+ <li><a href="#forms__textareas">Textareas</a></li>
+ <li><a href="#forms__html5">HTML5 inputs</a></li>
+ <li><a href="#forms__action">Action buttons</a></li>
+ </ul>
+ </li>
+ </ul>
+ </nav>
+ <main>
+ <section id="text">
+ <header>
+ <h1>Text</h1>
+ </header>
+ <article id="text__headings">
+ <header>
+ <h2>Headings</h2>
+ </header>
+
+ <h1>Heading 1</h1>
+ <h2>Heading 2</h2>
+ <h3>Heading 3</h3>
+ <h4>Heading 4</h4>
+ <h5>Heading 5</h5>
+ <h6>Heading 6</h6>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__paragraphs">
+ <header>
+ <h2>Paragraphs</h2>
+ </header>
+
+ <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a
+ self-contained unit of a discourse in writing dealing with a particular point or idea. A
+ paragraph consists of one or more sentences. Though not required by the syntax of any
+ language, paragraphs are usually an expected part of formal writing, used to organize longer
+ prose.</p>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__blockquotes">
+ <header>
+ <h2>Blockquotes</h2>
+ </header>
+
+ <blockquote>
+ <p>A block quotation (also known as a long quotation or extract) is a quotation in a written
+ document, that is set off from the main text as a paragraph, or block of text.</p>
+ <p>It is typically distinguished visually using indentation and a different typeface or
+ smaller size quotation. It may or may not include a citation, usually placed at the
+ bottom.</p>
+ <cite><a href="#!">Said no one, ever.</a></cite>
+ </blockquote>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__asides">
+ <header>
+ <h2>Asides</h2>
+ </header>
+ <aside>
+ <h4>This is an aside</h4>
+ <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa cumque numquam natus harum delectus autem, ipsam veritatis eligendi.</p>
+ </aside>
+ <p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Rerum eligendi optio ipsa nemo assumenda mollitia inventore neque dolores animi ratione libero qui dolorem, distinctio aut, quae, iste, cumque nihil enim!</p>
+ <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dolorum perspiciatis corrupti eaque tempore autem doloremque, placeat, in earum ab maxime commodi tenetur quos provident fugit assumenda, consequatur vero ipsum, et.</p>
+ <p>Lorem ipsum dolor sit amet consectetur adipisicing, elit. Molestias, facilis. Dolores rerum omnis, adipisci odit ipsa, autem animi molestiae fugit temporibus fuga dignissimos, commodi et, itaque quo voluptatem recusandae voluptatibus.</p>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__lists">
+ <header>
+ <h2>Lists</h2>
+ </header>
+
+ <h3>Description list</h3>
+ <dl>
+ <dt>Description term</dt>
+ <dd>Description details.</dd>
+ <dd>Additional details.</dd>
+ <dt>Description term</dt>
+ <dt>This is a second term</dt>
+ <dt>This is a third term</dt>
+ <dd>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas, modi iure! Incidunt, dolorum sit? Dolorum cumque omnis accusantium doloremque nihil est perferendis voluptas delectus, quis aperiam blanditiis deleniti modi at. Lorem ipsum dolor sit amet consectetur adipisicing elit. Vel, perspiciatis, vero accusantium sed dicta exercitationem iure praesentium nobis esse ullam sunt cum blanditiis! Neque similique corporis animi voluptatibus et modi.</dd>
+ </dl>
+ <h3>Ordered List</h3>
+ <ol type="1">
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ol type="A">
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ol type="a">
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ol type="I">
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ol type="i">
+ <li>List Item 1</li>
+ <li>List Item 2</li>
+ <li>List Item 3</li>
+ </ol>
+ </li>
+ <li>List Item 3</li>
+ </ol>
+ </li>
+ <li>List Item 3</li>
+ </ol>
+ </li>
+ <li>List Item 3</li>
+ </ol>
+ </li>
+ <li>List Item 3</li>
+ </ol>
+ <h3>Unordered List</h3>
+ <ul>
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ul>
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ul>
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ul>
+ <li>List Item 1</li>
+ <li>
+ List Item 2
+ <ul>
+ <li>List Item 1</li>
+ <li>List Item 2</li>
+ <li>List Item 3</li>
+ </ul>
+ </li>
+ <li>List Item 3</li>
+ </ul>
+ </li>
+ <li>List Item 3</li>
+ </ul>
+ </li>
+ <li>List Item 3</li>
+ </ul>
+ </li>
+ <li>List Item 3</li>
+ </ul>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__details">
+ <header>
+ <h1>Details / Summary</h1>
+ </header>
+ <details>
+ <summary>Expand for details</summary>
+ <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, odio! Odio natus ullam ad
+ quaerat, eaque necessitatibus, aliquid distinctio similique voluptatibus dicta consequuntur
+ animi. Quaerat facilis quidem unde eos! Ipsa.</p>
+ </details>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__address">
+ <header>
+ <h1>Address</h1>
+ </header>
+ <address>
+ Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
+ Visit us at:<br>
+ Example.com<br>
+ Box 564, Disneyland<br>
+ USA
+ </address>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__hr">
+ <header>
+ <h2>Horizontal rules</h2>
+ </header>
+ <p>
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
+ eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
+ ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
+ aliquip ex ea commodo consequat. Duis aute irure dolor in
+ reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
+ pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+ </p>
+ <p>
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
+ eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
+ ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
+ aliquip ex ea commodo consequat. Duis aute irure dolor in
+ reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
+ pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+ </p>
+ <hr>
+ <p>
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
+ eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
+ ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
+ aliquip ex ea commodo consequat. Duis aute irure dolor in
+ reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
+ pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+ </p>
+ <p>
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
+ eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
+ ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
+ aliquip ex ea commodo consequat. Duis aute irure dolor in
+ reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
+ pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+ </p>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__tables">
+ <header>
+ <h2>Tabular data</h2>
+ </header>
+ <table>
+ <caption>Table Caption</caption>
+ <thead>
+ <tr>
+ <th>Table Heading 1</th>
+ <th>Table Heading 2</th>
+ <th>Table Heading 3</th>
+ <th>Table Heading 4</th>
+ <th>Table Heading 5</th>
+ </tr>
+ </thead>
+ <tfoot>
+ <tr>
+ <th>Table Footer 1</th>
+ <th>Table Footer 2</th>
+ <th>Table Footer 3</th>
+ <th>Table Footer 4</th>
+ <th>Table Footer 5</th>
+ </tr>
+ </tfoot>
+ <tbody>
+ <tr>
+ <td>Table Cell 1</td>
+ <td>Table Cell 2</td>
+ <td>Table Cell 3</td>
+ <td>Table Cell 4</td>
+ <td>Table Cell 5</td>
+ </tr>
+ <tr>
+ <td>Table Cell 1</td>
+ <td>Table Cell 2</td>
+ <td>Table Cell 3</td>
+ <td>Table Cell 4</td>
+ <td>Table Cell 5</td>
+ </tr>
+ <tr>
+ <td>Table Cell 1</td>
+ <td>Table Cell 2</td>
+ <td>Table Cell 3</td>
+ <td>Table Cell 4</td>
+ <td>Table Cell 5</td>
+ </tr>
+ <tr>
+ <td>Table Cell 1</td>
+ <td>Table Cell 2</td>
+ <td>Table Cell 3</td>
+ <td>Table Cell 4</td>
+ <td>Table Cell 5</td>
+ </tr>
+ </tbody>
+ </table>
+ <table>
+ <caption>Overflowing table</caption>
+ <colgroup>
+ <col>
+ <col>
+ <col>
+ <col>
+ <col>
+ </colgroup>
+ <thead>
+ <tr>
+ <th>Header_1</th>
+ <th>Header_2</th>
+ <th>Header_3</th>
+ <th>Header_4</th>
+ <th>Header_5</th>
+ <th>Header_6</th>
+ <th>Header_7</th>
+ <th>Header_8</th>
+ <th>Header_9</th>
+ <th>Header_10</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Row:1 Cell:1</td>
+ <td>Row:1 Cell:2</td>
+ <td>Row:1 Cell:3</td>
+ <td>Row:1 Cell:4</td>
+ <td>Row:1 Cell:5</td>
+ <td>Row:1 Cell:6</td>
+ <td>Row:1 Cell:7</td>
+ <td>Row:1 Cell:8</td>
+ <td>Row:1 Cell:9</td>
+ <td>Row:1 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:2 Cell:1</td>
+ <td>Row:2 Cell:2</td>
+ <td>Row:2 Cell:3</td>
+ <td>Row:2 Cell:4</td>
+ <td>Row:2 Cell:5</td>
+ <td>Row:2 Cell:6</td>
+ <td>Row:2 Cell:7</td>
+ <td>Row:2 Cell:8</td>
+ <td>Row:2 Cell:9</td>
+ <td>Row:2 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:3 Cell:1</td>
+ <td>Row:3 Cell:2</td>
+ <td>Row:3 Cell:3</td>
+ <td>Row:3 Cell:4</td>
+ <td>Row:3 Cell:5</td>
+ <td>Row:3 Cell:6</td>
+ <td>Row:3 Cell:7</td>
+ <td>Row:3 Cell:8</td>
+ <td>Row:3 Cell:9</td>
+ <td>Row:3 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:4 Cell:1</td>
+ <td>Row:4 Cell:2</td>
+ <td>Row:4 Cell:3</td>
+ <td>Row:4 Cell:4</td>
+ <td>Row:4 Cell:5</td>
+ <td>Row:4 Cell:6</td>
+ <td>Row:4 Cell:7</td>
+ <td>Row:4 Cell:8</td>
+ <td>Row:4 Cell:9</td>
+ <td>Row:4 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:5 Cell:1</td>
+ <td>Row:5 Cell:2</td>
+ <td>Row:5 Cell:3</td>
+ <td>Row:5 Cell:4</td>
+ <td>Row:5 Cell:5</td>
+ <td>Row:5 Cell:6</td>
+ <td>Row:5 Cell:7</td>
+ <td>Row:5 Cell:8</td>
+ <td>Row:5 Cell:9</td>
+ <td>Row:5 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:6 Cell:1</td>
+ <td>Row:6 Cell:2</td>
+ <td>Row:6 Cell:3</td>
+ <td>Row:6 Cell:4</td>
+ <td>Row:6 Cell:5</td>
+ <td>Row:6 Cell:6</td>
+ <td>Row:6 Cell:7</td>
+ <td>Row:6 Cell:8</td>
+ <td>Row:6 Cell:9</td>
+ <td>Row:6 Cell:10</td>
+ </tr>
+ </tbody>
+ </table>
+ <figure>
+ <table>
+ <caption>Overflowing table in figure</caption>
+ <colgroup>
+ <col>
+ <col>
+ <col>
+ <col>
+ <col>
+ </colgroup>
+ <thead>
+ <tr>
+ <th>Header_1</th>
+ <th>Header_2</th>
+ <th>Header_3</th>
+ <th>Header_4</th>
+ <th>Header_5</th>
+ <th>Header_6</th>
+ <th>Header_7</th>
+ <th>Header_8</th>
+ <th>Header_9</th>
+ <th>Header_10</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Row:1 Cell:1</td>
+ <td>Row:1 Cell:2</td>
+ <td>Row:1 Cell:3</td>
+ <td>Row:1 Cell:4</td>
+ <td>Row:1 Cell:5</td>
+ <td>Row:1 Cell:6</td>
+ <td>Row:1 Cell:7</td>
+ <td>Row:1 Cell:8</td>
+ <td>Row:1 Cell:9</td>
+ <td>Row:1 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:2 Cell:1</td>
+ <td>Row:2 Cell:2</td>
+ <td>Row:2 Cell:3</td>
+ <td>Row:2 Cell:4</td>
+ <td>Row:2 Cell:5</td>
+ <td>Row:2 Cell:6</td>
+ <td>Row:2 Cell:7</td>
+ <td>Row:2 Cell:8</td>
+ <td>Row:2 Cell:9</td>
+ <td>Row:2 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:3 Cell:1</td>
+ <td>Row:3 Cell:2</td>
+ <td>Row:3 Cell:3</td>
+ <td>Row:3 Cell:4</td>
+ <td>Row:3 Cell:5</td>
+ <td>Row:3 Cell:6</td>
+ <td>Row:3 Cell:7</td>
+ <td>Row:3 Cell:8</td>
+ <td>Row:3 Cell:9</td>
+ <td>Row:3 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:4 Cell:1</td>
+ <td>Row:4 Cell:2</td>
+ <td>Row:4 Cell:3</td>
+ <td>Row:4 Cell:4</td>
+ <td>Row:4 Cell:5</td>
+ <td>Row:4 Cell:6</td>
+ <td>Row:4 Cell:7</td>
+ <td>Row:4 Cell:8</td>
+ <td>Row:4 Cell:9</td>
+ <td>Row:4 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:5 Cell:1</td>
+ <td>Row:5 Cell:2</td>
+ <td>Row:5 Cell:3</td>
+ <td>Row:5 Cell:4</td>
+ <td>Row:5 Cell:5</td>
+ <td>Row:5 Cell:6</td>
+ <td>Row:5 Cell:7</td>
+ <td>Row:5 Cell:8</td>
+ <td>Row:5 Cell:9</td>
+ <td>Row:5 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:6 Cell:1</td>
+ <td>Row:6 Cell:2</td>
+ <td>Row:6 Cell:3</td>
+ <td>Row:6 Cell:4</td>
+ <td>Row:6 Cell:5</td>
+ <td>Row:6 Cell:6</td>
+ <td>Row:6 Cell:7</td>
+ <td>Row:6 Cell:8</td>
+ <td>Row:6 Cell:9</td>
+ <td>Row:6 Cell:10</td>
+ </tr>
+ </tbody>
+ </table>
+ <figcaption>Table in figure</figcaption>
+ </figure>
+ <details>
+ <summary>Overflowing table in details</summary>
+ <table>
+ <caption>Overflowing table</caption>
+ <colgroup>
+ <col>
+ <col>
+ <col>
+ <col>
+ <col>
+ </colgroup>
+ <thead>
+ <tr>
+ <th>Header_1</th>
+ <th>Header_2</th>
+ <th>Header_3</th>
+ <th>Header_4</th>
+ <th>Header_5</th>
+ <th>Header_6</th>
+ <th>Header_7</th>
+ <th>Header_8</th>
+ <th>Header_9</th>
+ <th>Header_10</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Row:1 Cell:1</td>
+ <td>Row:1 Cell:2</td>
+ <td>Row:1 Cell:3</td>
+ <td>Row:1 Cell:4</td>
+ <td>Row:1 Cell:5</td>
+ <td>Row:1 Cell:6</td>
+ <td>Row:1 Cell:7</td>
+ <td>Row:1 Cell:8</td>
+ <td>Row:1 Cell:9</td>
+ <td>Row:1 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:2 Cell:1</td>
+ <td>Row:2 Cell:2</td>
+ <td>Row:2 Cell:3</td>
+ <td>Row:2 Cell:4</td>
+ <td>Row:2 Cell:5</td>
+ <td>Row:2 Cell:6</td>
+ <td>Row:2 Cell:7</td>
+ <td>Row:2 Cell:8</td>
+ <td>Row:2 Cell:9</td>
+ <td>Row:2 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:3 Cell:1</td>
+ <td>Row:3 Cell:2</td>
+ <td>Row:3 Cell:3</td>
+ <td>Row:3 Cell:4</td>
+ <td>Row:3 Cell:5</td>
+ <td>Row:3 Cell:6</td>
+ <td>Row:3 Cell:7</td>
+ <td>Row:3 Cell:8</td>
+ <td>Row:3 Cell:9</td>
+ <td>Row:3 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:4 Cell:1</td>
+ <td>Row:4 Cell:2</td>
+ <td>Row:4 Cell:3</td>
+ <td>Row:4 Cell:4</td>
+ <td>Row:4 Cell:5</td>
+ <td>Row:4 Cell:6</td>
+ <td>Row:4 Cell:7</td>
+ <td>Row:4 Cell:8</td>
+ <td>Row:4 Cell:9</td>
+ <td>Row:4 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:5 Cell:1</td>
+ <td>Row:5 Cell:2</td>
+ <td>Row:5 Cell:3</td>
+ <td>Row:5 Cell:4</td>
+ <td>Row:5 Cell:5</td>
+ <td>Row:5 Cell:6</td>
+ <td>Row:5 Cell:7</td>
+ <td>Row:5 Cell:8</td>
+ <td>Row:5 Cell:9</td>
+ <td>Row:5 Cell:10</td>
+ </tr>
+ <tr>
+ <td>Row:6 Cell:1</td>
+ <td>Row:6 Cell:2</td>
+ <td>Row:6 Cell:3</td>
+ <td>Row:6 Cell:4</td>
+ <td>Row:6 Cell:5</td>
+ <td>Row:6 Cell:6</td>
+ <td>Row:6 Cell:7</td>
+ <td>Row:6 Cell:8</td>
+ <td>Row:6 Cell:9</td>
+ <td>Row:6 Cell:10</td>
+ </tr>
+ </tbody>
+ </table>
+ </details>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__code">
+ <header>
+ <h2>Code</h2>
+ </header>
+
+ <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
+ <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
+ <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp>
+ </p>
+ <h2>Pre-formatted text</h2>
+ <pre>P R E F O R M A T T E D T E X T
+ ! " # $ % &amp; ' ( ) * + , - . /
+ 0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
+ @ A B C D E F G H I J K L M N O
+ P Q R S T U V W X Y Z [ \ ] ^ _
+ ` a b c d e f g h i j k l m n o
+ p q r s t u v w x y z { | } ~ </pre>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__sections">
+ <header>
+ <h2>Text Sections</h2>
+ </header>
+ <section>
+ <h3>Header 1</h3>
+ <p>Test section 1</p>
+ </section>
+ <section>
+ <h3>Header 2</h3>
+ <p>Test section 2</p>
+ </section>
+ <section>
+ <h3>Header 3</h3>
+ <p>Test section 3</p>
+ </section>
+ </article>
+ <article id="text__inline">
+ <header>
+ <h2>Inline elements</h2>
+ </header>
+
+ <p><a href="#!">This is a text link</a>.</p>
+ <p><strong>Strong is used to indicate strong importance.</strong></p>
+ <p><em>This text has added emphasis.</em></p>
+ <p>The <b>b element</b> is stylistically different text from normal text, without any special
+ importance.</p>
+ <p>The <i>i element</i> is text that is offset from the normal text.</p>
+ <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual
+ annotation.</p>
+ <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
+ <p><s>This text has a strikethrough</s>.</p>
+ <p>Superscript<sup>®</sup>.</p>
+ <p>Subscript for things like H<sub>2</sub>O.</p>
+ <p><small>This small text is small for fine print, etc.</small></p>
+ <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
+ <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline
+ quotation.</q></p>
+ <p><cite>This is a citation.</cite></p>
+ <p>The <dfn>dfn element</dfn> indicates a definition.</p>
+ <p>The <mark>mark element</mark> indicates a highlight.</p>
+ <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
+ <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="text__comments">
+ <header>
+ <h2>HTML Comments</h2>
+ </header>
+
+ <p>There is comment here:
+ <!--This comment should not be displayed-->
+ </p>
+ <p>There is a comment spanning multiple tags and lines below here.</p>
+ <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
+             <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
+             <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
+
+             <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ </section>
+ <section id="embedded">
+ <header>
+ <h2>Embedded content</h2>
+ </header>
+ <article id="embedded__images">
+ <header>
+ <h2>Images</h2>
+ </header>
+
+ <h3>Plain <code>&lt;img&gt;</code> element</h3>
+ <p><img src="https://placekitten.com/480/480" alt="Photo of a kitten"></p>
+ <h3><code>&lt;figure&gt;</code> element with <code>&lt;img&gt;</code> element</h3>
+ <figure><img src="https://placekitten.com/420/420" alt="Photo of a kitten"></figure>
+ <h3><code>&lt;figure&gt;</code> element with <code>&lt;img&gt;</code> and
+ <code>&lt;figcaption&gt;</code> elements
+ </h3>
+ <figure>
+ <img src="https://placekitten.com/420/420" alt="Photo of a kitten">
+ <figcaption>Here is a caption for this image.</figcaption>
+ </figure>
+ <h3><code>&lt;figure&gt;</code> element with a <code>&lt;picture&gt;</code> element</h3>
+ <figure>
+ <picture>
+ <source srcset="https://placekitten.com/800/800" media="(min-width: 800px)">
+ <img src="https://placekitten.com/420/420" alt="Photo of a kitten" />
+ </picture>
+ </figure>
+
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__bgimages">
+ <header>
+ <h2>Background images</h2>
+ </header>
+ <figure style="background-image:url('https://placekitten.com/300/300'); width:300px; height: 300px;">
+ </figure>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__audio">
+ <header>
+ <h2>Audio</h2>
+ </header>
+ <audio controls="">audio</audio>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__video">
+ <header>
+ <h2>Video</h2>
+ </header>
+ <video controls="">video</video>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__canvas">
+ <header>
+ <h2>Canvas</h2>
+ </header>
+ <canvas>canvas</canvas>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__meter">
+ <header>
+ <h2>Meter</h2>
+ </header>
+ <meter value="2" min="0" max="10">2 out of 10</meter>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__progress">
+ <header>
+ <h2>Progress</h2>
+ </header>
+ <label for="progress-bar">No attributes (indeterminate)</label>
+ <progress id="progress-bar">progress</progress>
+ <label for="progress-30">30%, max 100%</label>
+ <progress id="progress-30" max="100" value="30">30%</progress>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__svg">
+ <header>
+ <h2>Inline SVG</h2>
+ </header>
+ <svg width="100px" height="100px">
+ <circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle>
+ </svg>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__iframe">
+ <header>
+ <h2>IFrame</h2>
+ </header>
+ <iframe src="index.html" height="300"></iframe>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__embed">
+ <header>
+ <h2>Embed</h2>
+ </header>
+ <embed src="index.html" height="300">
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__object">
+ <header>
+ <h2>Object</h2>
+ </header>
+ <object data="index.html" height="300"></object>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ <article id="embedded__dialog">
+ <header>
+ <h2>Dialog</h2>
+ </header>
+ <button onclick="document.getElementById('dialog-demo').showModal()">Open</button>
+ <dialog id="dialog-demo">
+ <h2>Dialog</h2>
+ <p>Dialogs are a new HTML5 element that can be used to create modal dialogs or pop-up windows.</p>
+ <form method="dialog">
+ <button>Close</button>
+ </form>
+ </dialog>
+ <footer>
+ <p><a href="#top">[Top]</a></p>
+ </footer>
+ </article>
+ </section>
+ <section id="forms">
+ <header>
+ <h2>Form elements</h2>
+ </header>
+ <form>
+ <fieldset id="forms__input">
+ <legend>Input fields</legend>
+ <p>
+ <label for="input__text">Text Input</label>
+ <input id="input__text" type="text" placeholder="Text Input">
+ </p>
+ <p>
+ <label for="input__password">Password</label>
+ <input id="input__password" type="password" placeholder="Type your Password">
+ </p>
+ <p>
+ <label for="input__webaddress">Web Address</label>
+ <input id="input__webaddress" type="url" placeholder="https://yoursite.com">
+ </p>
+ <p>
+ <label for="input__emailaddress">Email Address</label>
+ <input id="input__emailaddress" type="email" placeholder="name@email.com">
+ </p>
+ <p>
+ <label for="input__phone">Phone Number</label>
+ <input id="input__phone" type="tel" placeholder="(999) 999-9999">
+ </p>
+ <p>
+ <label for="input__search">Search</label>
+ <input id="input__search" type="search" placeholder="Enter Search Term">
+ </p>
+ <p>
+ <label for="input__text2">Number Input</label>
+ <input id="input__text2" type="number" placeholder="Enter a Number">
+ </p>
+ <p>
+ <label for="input__file">File Input</label>
+ <input id="input__file" type="file">
+ </p>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__select">
+ <legend>Select menus</legend>
+ <p>
+ <label for="select">Select</label>
+ <select id="select">
+ <optgroup label="Option Group">
+ <option>Option One</option>
+ <option>Option Two</option>
+ <option>Option Three</option>
+ </optgroup>
+ </select>
+ </p>
+ <p>
+ <label for="select_multiple">Select (multiple)</label>
+ <select id="select_multiple" multiple="multiple">
+ <optgroup label="Option Group">
+ <option>Option One</option>
+ <option>Option Two</option>
+ <option>Option Three</option>
+ </optgroup>
+ </select>
+ </p>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__checkbox">
+ <legend>Checkboxes</legend>
+ <p>Nested <code>label > input</code></p>
+ <ul>
+ <li><label for="checkbox1"><input id="checkbox1" name="checkbox" type="checkbox"
+ checked="checked"> Choice A</label></li>
+ <li><label for="checkbox2"><input id="checkbox2" name="checkbox" type="checkbox"> Choice
+ B</label></li>
+ <li><label for="checkbox3"><input id="checkbox3" name="checkbox" type="checkbox"> Choice
+ C</label></li>
+ </ul>
+ <p>Sibling <code>input + label</code></p>
+ <ul>
+ <li>
+ <input id="checkbox4" name="checkbox" type="checkbox" checked="checked">
+ <label for="checkbox4">Choice A</label>
+ </li>
+ <li>
+ <input id="checkbox5" name="checkbox" type="checkbox">
+ <label for="checkbox5">Choice B</label>
+ </li>
+ <li>
+ <input id="checkbox6" name="checkbox" type="checkbox">
+ <label for="checkbox6">Choice C</label>
+ </li>
+ </ul>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__radio">
+ <legend>Radio buttons</legend>
+ <p>Nested <code>label > input</code></p>
+ <ul>
+ <li><label for="radio1"><input id="radio1" name="radio" type="radio" checked="checked">
+ Option 1</label></li>
+ <li><label for="radio2"><input id="radio2" name="radio" type="radio"> Option 2</label></li>
+ <li><label for="radio3"><input id="radio3" name="radio" type="radio"> Option 3</label></li>
+ </ul>
+ <p>Sibling <code>input + label</code></p>
+ <ul>
+ <li>
+ <input id="radio4" name="radio" type="radio" checked="checked">
+ <label for="radio4">Option 1</label>
+ </li>
+ <li>
+ <input id="radio5" name="radio" type="radio">
+ <label for="radio5">Option 2</label>
+ </li>
+ <li>
+ <input id="radio6" name="radio" type="radio">
+ <label for="radio6">Option 3</label>
+ </li>
+ </ul>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__textareas">
+ <legend>Textareas</legend>
+ <p>
+ <label for="textarea">Textarea</label>
+ <textarea id="textarea" rows="8" cols="48" placeholder="Enter your message here"></textarea>
+ </p>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__html5">
+ <legend>HTML5 inputs</legend>
+ <p>
+ <label for="ic">Color input</label>
+ <input type="color" id="ic" value="#000000">
+ </p>
+ <p>
+ <label for="in">Number input</label>
+ <input type="number" id="in" min="0" max="10" value="5">
+ </p>
+ <p>
+ <label for="ir">Range input</label>
+ <input type="range" id="ir" value="10">
+ </p>
+ <p>
+ <label for="idd">Date input</label>
+ <input type="date" id="idd" value="1970-01-01">
+ </p>
+ <p>
+ <label for="idm">Month input</label>
+ <input type="month" id="idm" value="1970-01">
+ </p>
+ <p>
+ <label for="idw">Week input</label>
+ <input type="week" id="idw" value="1970-W01">
+ </p>
+ <p>
+ <label for="idt">Datetime input</label>
+ <input type="datetime" id="idt" value="1970-01-01T00:00:00Z">
+ </p>
+ <p>
+ <label for="idtl">Datetime-local input</label>
+ <input type="datetime-local" id="idtl" value="1970-01-01T00:00">
+ </p>
+ <p>
+ <label for="idl">Datalist</label>
+ <input type="text" id="idl" list="example-list">
+ <datalist id="example-list">
+ <option value="Example #1" />
+ <option value="Example #2" />
+ <option value="Example #3" />
+ </datalist>
+ </p>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ <fieldset id="forms__action">
+ <legend>Action buttons</legend>
+ <p>
+ <input type="submit" value="<input type=submit>">
+ <input type="button" value="<input type=button>">
+ <input type="reset" value="<input type=reset>">
+ <input type="submit" value="<input disabled>" disabled>
+ </p>
+ <p>
+ <button type="submit">&lt;button type=submit&gt;</button>
+ <button type="button">&lt;button type=button&gt;</button>
+ <button type="reset">&lt;button type=reset&gt;</button>
+ <button type="button" disabled>&lt;button disabled&gt;</button>
+ </p>
+ </fieldset>
+ <p><a href="#top">[Top]</a></p>
+ </form>
+ </section>
+ </main>
+ <footer>
+ <p>Based on <a href="http://github.com/cbracco/html5-test-page">HTML5-test-page</a> by cbracco.</p>
+ </footer>
+</body>
+
+</html>
diff --git a/simple.css-2.2.0/package.json b/simple.css-2.2.0/package.json
new file mode 100644
index 0000000..da74c58
--- /dev/null
+++ b/simple.css-2.2.0/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "simpledotcss",
+ "version": "2.2.0",
+ "description": "Simple.css is a CSS template that allows you to make a good looking website really quickly.",
+ "main": "simple.css",
+ "files": [
+ "simple.css",
+ "simple.min.css",
+ "simple-v1.css",
+ "simple-v1.min.css"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/kevquirk/simple.css.git"
+ },
+ "author": "kevquirk",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/kevquirk/simple.css/issues"
+ },
+ "homepage": "https://github.com/kevquirk/simple.css#readme",
+ "keywords": [
+ "css",
+ "html",
+ "simple.css",
+ "simplecss.org",
+ "simplecss",
+ "classless"
+ ]
+}
diff --git a/simple.css-2.2.0/screenshot.png b/simple.css-2.2.0/screenshot.png
new file mode 100644
index 0000000..06e9fdd
--- /dev/null
+++ b/simple.css-2.2.0/screenshot.png
Binary files differ
diff --git a/simple.css-2.2.0/simple-v1.css b/simple.css-2.2.0/simple-v1.css
new file mode 100644
index 0000000..b0f123e
--- /dev/null
+++ b/simple.css-2.2.0/simple-v1.css
@@ -0,0 +1,511 @@
+/* Set the global variables for everything. Change these to use your own fonts and colours. */
+:root {
+ /* Set sans-serif & mono fonts */
+ --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
+ "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica,
+ "Helvetica Neue", sans-serif;
+ --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
+
+ /* Body font size. By default, effectively 18.4px, based on 16px as 'root em' */
+ --base-fontsize: 1.15rem;
+
+ /* Major third scale progression - see https://type-scale.com/ */
+ --header-scale: 1.25;
+
+ /* Line height is set to the "Golden ratio" for optimal legibility */
+ --line-height: 1.618;
+
+ /* Default (light) theme */
+ --bg: #fff;
+ --accent-bg: #f5f7ff;
+ --text: #212121;
+ --text-light: #585858;
+ --border: #d8dae1;
+ --accent: #0d47a1;
+ --accent-light: #90caf9;
+ --code: #d81b60;
+ --preformatted: #444;
+ --marked: #ffdd33;
+ --disabled: #efefef;
+}
+
+/* Dark theme */
+@media (prefers-color-scheme: dark) {
+ :root {
+ --bg: #212121;
+ --accent-bg: #2b2b2b;
+ --text: #dcdcdc;
+ --text-light: #ababab;
+ --border: #666;
+ --accent: #ffb300;
+ --accent-light: #ffecb3;
+ --code: #f06292;
+ --preformatted: #ccc;
+ --disabled: #111;
+ }
+
+ img,
+ video {
+ opacity: 0.6;
+ }
+}
+
+html {
+ /* Set the font globally */
+ font-family: var(--sans-font);
+}
+
+/* Make the body a nice central block */
+body {
+ color: var(--text);
+ background: var(--bg);
+ font-size: var(--base-fontsize);
+ line-height: var(--line-height);
+ display: flex;
+ min-height: 100vh;
+ flex-direction: column;
+ flex: 1;
+ margin: 0 auto;
+ max-width: 45rem;
+ padding: 0 0.5rem;
+ overflow-x: hidden;
+ word-break: break-word;
+ overflow-wrap: break-word;
+}
+
+/* Make the header bg full width, but the content inline with body */
+header {
+ background: var(--accent-bg);
+ border-bottom: 1px solid var(--border);
+ text-align: center;
+ padding: 2rem 0.5rem;
+ width: 100vw;
+ position: relative;
+ box-sizing: border-box;
+ left: 50%;
+ right: 50%;
+ margin-left: -50vw;
+ margin-right: -50vw;
+}
+
+/* Remove margins for header text */
+header h1,
+header p {
+ margin: 0;
+}
+
+/* Add a little padding to ensure spacing is correct between content and nav */
+main {
+ padding-top: 1.5rem;
+}
+
+/* Fix line height when title wraps */
+h1,
+h2,
+h3 {
+ line-height: 1.1;
+}
+
+/* Format navigation */
+nav {
+ font-size: 1rem;
+ line-height: 2;
+ padding: 1rem 0;
+}
+
+nav a {
+ margin: 1rem 1rem 0 0;
+ border: 1px solid var(--border);
+ border-radius: 5px;
+ color: var(--text) !important;
+ display: inline-block;
+ padding: 0.1rem 1rem;
+ text-decoration: none;
+ transition: 0.4s;
+}
+
+nav a:hover {
+ color: var(--accent) !important;
+ border-color: var(--accent);
+}
+
+nav a.current:hover {
+ text-decoration: none;
+}
+
+footer {
+ margin-top: 4rem;
+ padding: 2rem 1rem 1.5rem 1rem;
+ color: var(--text-light);
+ font-size: 0.9rem;
+ text-align: center;
+ border-top: 1px solid var(--border);
+}
+
+/* Format headers */
+h1 {
+ font-size: calc(
+ var(--base-fontsize) * var(--header-scale) * var(--header-scale) *
+ var(--header-scale) * var(--header-scale)
+ );
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+h2 {
+ font-size: calc(
+ var(--base-fontsize) * var(--header-scale) * var(--header-scale) *
+ var(--header-scale)
+ );
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+h3 {
+ font-size: calc(
+ var(--base-fontsize) * var(--header-scale) * var(--header-scale)
+ );
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+h4 {
+ font-size: calc(var(--base-fontsize) * var(--header-scale));
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+h5 {
+ font-size: var(--base-fontsize);
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+h6 {
+ font-size: calc(var(--base-fontsize) / var(--header-scale));
+ margin-top: calc(var(--line-height) * 1.5rem);
+}
+
+/* Format links & buttons */
+a,
+a:visited {
+ color: var(--accent);
+}
+
+a:hover {
+ text-decoration: none;
+}
+
+a button,
+button,
+[role="button"],
+input[type="submit"],
+input[type="reset"],
+input[type="button"] {
+ border: none;
+ border-radius: 5px;
+ background: var(--accent);
+ font-size: 1rem;
+ color: var(--bg);
+ padding: 0.7rem 0.9rem;
+ margin: 0.5rem 0;
+ transition: 0.4s;
+}
+
+a button[disabled],
+button[disabled],
+[role="button"][aria-disabled="true"],
+input[type="submit"][disabled],
+input[type="reset"][disabled],
+input[type="button"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"][disabled],
+select[disabled] {
+ cursor: default;
+ opacity: 0.5;
+ cursor: not-allowed;
+}
+
+input:disabled,
+textarea:disabled,
+select:disabled {
+ cursor: not-allowed;
+ background-color: var(--disabled);
+}
+
+input[type="range"] {
+ padding: 0;
+}
+
+/* Set the cursor to '?' while hovering over an abbreviation */
+abbr {
+ cursor: help;
+}
+
+button:focus,
+button:enabled:hover,
+[role="button"]:focus,
+[role="button"]:not([aria-disabled="true"]):hover,
+input[type="submit"]:focus,
+input[type="submit"]:enabled:hover,
+input[type="reset"]:focus,
+input[type="reset"]:enabled:hover,
+input[type="button"]:focus,
+input[type="button"]:enabled:hover,
+input[type="checkbox"]:focus,
+input[type="checkbox"]:enabled:hover,
+input[type="radio"]:focus,
+input[type="radio"]:enabled:hover {
+ filter: brightness(1.4);
+ cursor: pointer;
+}
+
+/* Format the expanding box */
+details {
+ background: var(--accent-bg);
+ border: 1px solid var(--border);
+ border-radius: 5px;
+ margin-bottom: 1rem;
+}
+
+summary {
+ cursor: pointer;
+ font-weight: bold;
+ padding: 0.6rem 1rem;
+}
+
+details[open] {
+ padding: 0.6rem 1rem 0.75rem 1rem;
+}
+
+details[open] summary {
+ margin-bottom: 0.5rem;
+ padding: 0;
+}
+
+details[open] > *:last-child {
+ margin-bottom: 0;
+}
+
+/* Format tables */
+table {
+ border-collapse: collapse;
+ width: 100%;
+ margin: 1.5rem 0;
+}
+
+td,
+th {
+ border: 1px solid var(--border);
+ text-align: left;
+ padding: 0.5rem;
+}
+
+th {
+ background: var(--accent-bg);
+ font-weight: bold;
+}
+
+tr:nth-child(even) {
+ /* Set every other cell slightly darker. Improves readability. */
+ background: var(--accent-bg);
+}
+
+table caption {
+ font-weight: bold;
+ margin-bottom: 0.5rem;
+}
+
+/* Lists */
+ol,
+ul {
+ padding-left: 3rem;
+}
+
+/* Format forms */
+textarea,
+select,
+input {
+ font-size: inherit;
+ font-family: inherit;
+ padding: 0.5rem;
+ margin-bottom: 0.5rem;
+ color: var(--text);
+ background: var(--bg);
+ border: 1px solid var(--border);
+ border-radius: 5px;
+ box-shadow: none;
+ box-sizing: border-box;
+ width: 60%;
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ appearance: none;
+}
+
+/* Add arrow to */
+select {
+ background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
+ linear-gradient(135deg, var(--text) 51%, transparent 49%);
+ background-position: calc(100% - 20px), calc(100% - 15px);
+ background-size: 5px 5px, 5px 5px;
+ background-repeat: no-repeat;
+}
+
+select[multiple] {
+ background-image: none !important;
+}
+
+/* checkbox and radio button style */
+input[type="checkbox"],
+input[type="radio"] {
+ vertical-align: bottom;
+ position: relative;
+}
+
+input[type="radio"] {
+ border-radius: 100%;
+}
+
+input[type="checkbox"]:checked,
+input[type="radio"]:checked {
+ background: var(--accent);
+}
+
+input[type="checkbox"]:checked::after {
+ /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
+ content: " ";
+ width: 0.1em;
+ height: 0.25em;
+ border-radius: 0;
+ position: absolute;
+ top: 0.05em;
+ left: 0.18em;
+ background: transparent;
+ border-right: solid var(--bg) 0.08em;
+ border-bottom: solid var(--bg) 0.08em;
+ font-size: 1.8em;
+ transform: rotate(45deg);
+}
+input[type="radio"]:checked::after {
+ /* creates a colored circle for the checked radio button */
+ content: " ";
+ width: 0.25em;
+ height: 0.25em;
+ border-radius: 100%;
+ position: absolute;
+ top: 0.125em;
+ background: var(--bg);
+ left: 0.125em;
+ font-size: 32px;
+}
+
+/* Make the textarea wider than other inputs */
+textarea {
+ width: 80%;
+}
+
+/* Makes input fields wider on smaller screens */
+@media only screen and (max-width: 720px) {
+ textarea,
+ select,
+ input {
+ width: 100%;
+ }
+}
+
+/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
+input[type="checkbox"],
+input[type="radio"] {
+ width: auto;
+}
+
+/* do not show border around file selector button */
+input[type="file"] {
+ border: 0;
+}
+
+/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
+fieldset {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+/* Misc body elements */
+
+hr {
+ color: var(--border);
+ border-top: 1px;
+ margin: 1rem auto;
+}
+
+mark {
+ padding: 2px 5px;
+ border-radius: 4px;
+ background: var(--marked);
+}
+
+main img,
+main video {
+ max-width: 100%;
+ height: auto;
+ border-radius: 5px;
+}
+
+figure {
+ margin: 0;
+}
+
+figcaption {
+ font-size: 0.9rem;
+ color: var(--text-light);
+ text-align: center;
+ margin-bottom: 1rem;
+}
+
+blockquote {
+ margin: 2rem 0 2rem 2rem;
+ padding: 0.4rem 0.8rem;
+ border-left: 0.35rem solid var(--accent);
+ opacity: 0.8;
+ font-style: italic;
+}
+
+cite {
+ font-size: 0.9rem;
+ color: var(--text-light);
+ font-style: normal;
+}
+
+/* Use mono font for code like elements */
+code,
+pre,
+pre span,
+kbd,
+samp {
+ font-size: 1.075rem;
+ font-family: var(--mono-font);
+ color: var(--code);
+}
+
+kbd {
+ color: var(--preformatted);
+ border: 1px solid var(--preformatted);
+ border-bottom: 3px solid var(--preformatted);
+ border-radius: 5px;
+ padding: 0.1rem;
+}
+
+pre {
+ padding: 1rem 1.4rem;
+ max-width: 100%;
+ overflow: auto;
+ overflow-x: auto;
+ color: var(--preformatted);
+ background: var(--accent-bg);
+ border: 1px solid var(--border);
+ border-radius: 5px;
+}
+
+/* Fix embedded code within pre */
+pre code {
+ color: var(--preformatted);
+ background: none;
+ margin: 0;
+ padding: 0;
+}
diff --git a/simple.css-2.2.0/simple-v1.min.css b/simple.css-2.2.0/simple-v1.min.css
new file mode 100644
index 0000000..36b37ae
--- /dev/null
+++ b/simple.css-2.2.0/simple-v1.min.css
@@ -0,0 +1 @@
+:root{--sans-font:-apple-system,BlinkMacSystemFont,"Avenir Next",Avenir,"Nimbus Sans L",Roboto,Noto,"Segoe UI",Arial,Helvetica,"Helvetica Neue",sans-serif;--mono-font:Consolas,Menlo,Monaco,"Andale Mono","Ubuntu Mono",monospace;--base-fontsize:1.15rem;--header-scale:1.25;--line-height:1.618;--bg:#fff;--accent-bg:#f5f7ff;--text:#212121;--text-light:#585858;--border:#d8dae1;--accent:#0d47a1;--accent-light:#90caf9;--code:#d81b60;--preformatted:#444;--marked:#ffdd33;--disabled:#efefef}@media (prefers-color-scheme:dark){:root{--bg:#212121;--accent-bg:#2b2b2b;--text:#dcdcdc;--text-light:#ababab;--border:#666;--accent:#ffb300;--accent-light:#ffecb3;--code:#f06292;--preformatted:#ccc;--disabled:#111}img,video{opacity:.6}}html{font-family:var(--sans-font)}body{color:var(--text);background:var(--bg);font-size:var(--base-fontsize);line-height:var(--line-height);display:flex;min-height:100vh;flex-direction:column;flex:1;margin:0 auto;max-width:45rem;padding:0 .5rem;overflow-x:hidden;word-break:break-word;overflow-wrap:break-word}header{background:var(--accent-bg);border-bottom:1px solid var(--border);text-align:center;padding:2rem .5rem;width:100vw;position:relative;box-sizing:border-box;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}header h1,header p{margin:0}main{padding-top:1.5rem}h1,h2,h3{line-height:1.1}nav{font-size:1rem;line-height:2;padding:1rem 0}nav a{margin:1rem 1rem 0 0;border:1px solid var(--border);border-radius:5px;color:var(--text)!important;display:inline-block;padding:.1rem 1rem;text-decoration:none;transition:.4s}nav a:hover{color:var(--accent)!important;border-color:var(--accent)}nav a.current:hover{text-decoration:none}footer{margin-top:4rem;padding:2rem 1rem 1.5rem 1rem;color:var(--text-light);font-size:.9rem;text-align:center;border-top:1px solid var(--border)}h1{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h2{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h3{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h4{font-size:calc(var(--base-fontsize) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h5{font-size:var(--base-fontsize);margin-top:calc(var(--line-height) * 1.5rem)}h6{font-size:calc(var(--base-fontsize)/ var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}a,a:visited{color:var(--accent)}a:hover{text-decoration:none}[role=button],a button,button,input[type=button],input[type=reset],input[type=submit]{border:none;border-radius:5px;background:var(--accent);font-size:1rem;color:var(--bg);padding:.7rem .9rem;margin:.5rem 0;transition:.4s}[role=button][aria-disabled=true],a button[disabled],button[disabled],input[type=button][disabled],input[type=checkbox][disabled],input[type=radio][disabled],input[type=reset][disabled],input[type=submit][disabled],select[disabled]{cursor:default;opacity:.5;cursor:not-allowed}input:disabled,select:disabled,textarea:disabled{cursor:not-allowed;background-color:var(--disabled)}input[type=range]{padding:0}abbr{cursor:help}[role=button]:focus,[role=button]:not([aria-disabled=true]):hover,button:enabled:hover,button:focus,input[type=button]:enabled:hover,input[type=button]:focus,input[type=checkbox]:enabled:hover,input[type=checkbox]:focus,input[type=radio]:enabled:hover,input[type=radio]:focus,input[type=reset]:enabled:hover,input[type=reset]:focus,input[type=submit]:enabled:hover,input[type=submit]:focus{filter:brightness(1.4);cursor:pointer}details{background:var(--accent-bg);border:1px solid var(--border);border-radius:5px;margin-bottom:1rem}summary{cursor:pointer;font-weight:700;padding:.6rem 1rem}details[open]{padding:.6rem 1rem .75rem 1rem}details[open] summary{margin-bottom:.5rem;padding:0}details[open]>:last-child{margin-bottom:0}table{border-collapse:collapse;width:100%;margin:1.5rem 0}td,th{border:1px solid var(--border);text-align:left;padding:.5rem}th{background:var(--accent-bg);font-weight:700}tr:nth-child(even){background:var(--accent-bg)}table caption{font-weight:700;margin-bottom:.5rem}ol,ul{padding-left:3rem}input,select,textarea{font-size:inherit;font-family:inherit;padding:.5rem;margin-bottom:.5rem;color:var(--text);background:var(--bg);border:1px solid var(--border);border-radius:5px;box-shadow:none;box-sizing:border-box;width:60%;-moz-appearance:none;-webkit-appearance:none;appearance:none}select{background-image:linear-gradient(45deg,transparent 49%,var(--text) 51%),linear-gradient(135deg,var(--text) 51%,transparent 49%);background-position:calc(100% - 20px),calc(100% - 15px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}select[multiple]{background-image:none!important}input[type=checkbox],input[type=radio]{vertical-align:bottom;position:relative}input[type=radio]{border-radius:100%}input[type=checkbox]:checked,input[type=radio]:checked{background:var(--accent)}input[type=checkbox]:checked::after{content:" ";width:.1em;height:.25em;border-radius:0;position:absolute;top:.05em;left:.18em;background:0 0;border-right:solid var(--bg) .08em;border-bottom:solid var(--bg) .08em;font-size:1.8em;transform:rotate(45deg)}input[type=radio]:checked::after{content:" ";width:.25em;height:.25em;border-radius:100%;position:absolute;top:.125em;background:var(--bg);left:.125em;font-size:32px}textarea{width:80%}@media only screen and (max-width:720px){input,select,textarea{width:100%}}input[type=checkbox],input[type=radio]{width:auto}input[type=file]{border:0}fieldset{border:0;padding:0;margin:0}hr{color:var(--border);border-top:1px;margin:1rem auto}mark{padding:2px 5px;border-radius:4px;background:var(--marked)}main img,main video{max-width:100%;height:auto;border-radius:5px}figure{margin:0}figcaption{font-size:.9rem;color:var(--text-light);text-align:center;margin-bottom:1rem}blockquote{margin:2rem 0 2rem 2rem;padding:.4rem .8rem;border-left:.35rem solid var(--accent);opacity:.8;font-style:italic}cite{font-size:.9rem;color:var(--text-light);font-style:normal}code,kbd,pre,pre span,samp{font-size:1.075rem;font-family:var(--mono-font);color:var(--code)}kbd{color:var(--preformatted);border:1px solid var(--preformatted);border-bottom:3px solid var(--preformatted);border-radius:5px;padding:.1rem}pre{padding:1rem 1.4rem;max-width:100%;overflow:auto;overflow-x:auto;color:var(--preformatted);background:var(--accent-bg);border:1px solid var(--border);border-radius:5px}pre code{color:var(--preformatted);background:0 0;margin:0;padding:0} \ No newline at end of file
diff --git a/simple.css-2.2.0/simple.css b/simple.css-2.2.0/simple.css
new file mode 100644
index 0000000..b67d07a
--- /dev/null
+++ b/simple.css-2.2.0/simple.css
@@ -0,0 +1,673 @@
+/* Global variables. */
+:root,
+::backdrop {
+ /* Set sans-serif & mono fonts */
+ --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
+ "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
+ "Helvetica Neue", sans-serif;
+ --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
+ --standard-border-radius: 5px;
+
+ /* Default (light) theme */
+ --bg: #fff;
+ --accent-bg: #f5f7ff;
+ --text: #212121;
+ --text-light: #585858;
+ --border: #898EA4;
+ --accent: #0d47a1;
+ --code: #d81b60;
+ --preformatted: #444;
+ --marked: #ffdd33;
+ --disabled: #efefef;
+}
+
+/* Dark theme */
+@media (prefers-color-scheme: dark) {
+ :root,
+ ::backdrop {
+ color-scheme: dark;
+ --bg: #212121;
+ --accent-bg: #2b2b2b;
+ --text: #dcdcdc;
+ --text-light: #ababab;
+ --accent: #ffb300;
+ --code: #f06292;
+ --preformatted: #ccc;
+ --disabled: #111;
+ }
+ /* Add a bit of transparency so light media isn't so glaring in dark mode */
+ img,
+ video {
+ opacity: 0.8;
+ }
+}
+
+/* Reset box-sizing */
+*, *::before, *::after {
+ box-sizing: border-box;
+}
+
+/* Reset default appearance */
+textarea,
+select,
+input,
+progress {
+ appearance: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+}
+
+html {
+ /* Set the font globally */
+ font-family: var(--sans-font);
+ scroll-behavior: smooth;
+}
+
+/* Make the body a nice central block */
+body {
+ color: var(--text);
+ background-color: var(--bg);
+ font-size: 1.15rem;
+ line-height: 1.5;
+ display: grid;
+ grid-template-columns: 1fr min(45rem, 90%) 1fr;
+ margin: 0;
+}
+body > * {
+ grid-column: 2;
+}
+
+/* Make the header bg full width, but the content inline with body */
+body > header {
+ background-color: var(--accent-bg);
+ border-bottom: 1px solid var(--border);
+ text-align: center;
+ padding: 0 0.5rem 2rem 0.5rem;
+ grid-column: 1 / -1;
+}
+
+body > header h1 {
+ max-width: 1200px;
+ margin: 1rem auto;
+}
+
+body > header p {
+ max-width: 40rem;
+ margin: 1rem auto;
+}
+
+/* Add a little padding to ensure spacing is correct between content and header > nav */
+main {
+ padding-top: 1.5rem;
+}
+
+body > footer {
+ margin-top: 4rem;
+ padding: 2rem 1rem 1.5rem 1rem;
+ color: var(--text-light);
+ font-size: 0.9rem;
+ text-align: center;
+ border-top: 1px solid var(--border);
+}
+
+/* Format headers */
+h1 {
+ font-size: 3rem;
+}
+
+h2 {
+ font-size: 2.6rem;
+ margin-top: 3rem;
+}
+
+h3 {
+ font-size: 2rem;
+ margin-top: 3rem;
+}
+
+h4 {
+ font-size: 1.44rem;
+}
+
+h5 {
+ font-size: 1.15rem;
+}
+
+h6 {
+ font-size: 0.96rem;
+}
+
+/* Prevent long strings from overflowing container */
+p, h1, h2, h3, h4, h5, h6 {
+ overflow-wrap: break-word;
+}
+
+/* Fix line height when title wraps */
+h1,
+h2,
+h3 {
+ line-height: 1.1;
+}
+
+/* Reduce header size on mobile */
+@media only screen and (max-width: 720px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ h2 {
+ font-size: 2.1rem;
+ }
+
+ h3 {
+ font-size: 1.75rem;
+ }
+
+ h4 {
+ font-size: 1.25rem;
+ }
+}
+
+/* Format links & buttons */
+a,
+a:visited {
+ color: var(--accent);
+}
+
+a:hover {
+ text-decoration: none;
+}
+
+button,
+[role="button"],
+input[type="submit"],
+input[type="reset"],
+input[type="button"],
+label[type="button"] {
+ border: none;
+ border-radius: var(--standard-border-radius);
+ background-color: var(--accent);
+ font-size: 1rem;
+ color: var(--bg);
+ padding: 0.7rem 0.9rem;
+ margin: 0.5rem 0;
+}
+
+button[disabled],
+[role="button"][aria-disabled="true"],
+input[type="submit"][disabled],
+input[type="reset"][disabled],
+input[type="button"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"][disabled],
+select[disabled] {
+ cursor: not-allowed;
+}
+
+input:disabled,
+textarea:disabled,
+select:disabled,
+button[disabled] {
+ cursor: not-allowed;
+ background-color: var(--disabled);
+ color: var(--text-light)
+}
+
+input[type="range"] {
+ padding: 0;
+}
+
+/* Set the cursor to '?' on an abbreviation and style the abbreviation to show that there is more information underneath */
+abbr[title] {
+ cursor: help;
+ text-decoration-line: underline;
+ text-decoration-style: dotted;
+}
+
+button:enabled:hover,
+[role="button"]:not([aria-disabled="true"]):hover,
+input[type="submit"]:enabled:hover,
+input[type="reset"]:enabled:hover,
+input[type="button"]:enabled:hover,
+label[type="button"]:hover {
+ filter: brightness(1.4);
+ cursor: pointer;
+}
+
+button:focus-visible:where(:enabled, [role="button"]:not([aria-disabled="true"])),
+input:enabled:focus-visible:where(
+ [type="submit"],
+ [type="reset"],
+ [type="button"]
+) {
+ outline: 2px solid var(--accent);
+ outline-offset: 1px;
+}
+
+/* Format navigation */
+header > nav {
+ font-size: 1rem;
+ line-height: 2;
+ padding: 1rem 0 0 0;
+}
+
+/* Use flexbox to allow items to wrap, as needed */
+header > nav ul,
+header > nav ol {
+ align-content: space-around;
+ align-items: center;
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ justify-content: center;
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+/* List items are inline elements, make them behave more like blocks */
+header > nav ul li,
+header > nav ol li {
+ display: inline-block;
+}
+
+header > nav a,
+header > nav a:visited {
+ margin: 0 0.5rem 1rem 0.5rem;
+ border: 1px solid var(--border);
+ border-radius: var(--standard-border-radius);
+ color: var(--text);
+ display: inline-block;
+ padding: 0.1rem 1rem;
+ text-decoration: none;
+}
+
+header > nav a:hover {
+ border-color: var(--accent);
+ color: var(--accent);
+ cursor: pointer;
+}
+
+/* Reduce nav side on mobile */
+@media only screen and (max-width: 720px) {
+ header > nav a {
+ border: none;
+ padding: 0;
+ text-decoration: underline;
+ line-height: 1;
+ }
+}
+
+/* Consolidate box styling */
+aside, details, pre, progress {
+ background-color: var(--accent-bg);
+ border: 1px solid var(--border);
+ border-radius: var(--standard-border-radius);
+ margin-bottom: 1rem;
+}
+
+aside {
+ font-size: 1rem;
+ width: 30%;
+ padding: 0 15px;
+ margin-left: 15px;
+ float: right;
+}
+
+/* Make aside full-width on mobile */
+@media only screen and (max-width: 720px) {
+ aside {
+ width: 100%;
+ float: none;
+ margin-left: 0;
+ }
+}
+
+article, fieldset, dialog {
+ border: 1px solid var(--border);
+ padding: 1rem;
+ border-radius: var(--standard-border-radius);
+ margin-bottom: 1rem;
+}
+
+article h2:first-child,
+section h2:first-child {
+ margin-top: 1rem;
+}
+
+section {
+ border-top: 1px solid var(--border);
+ border-bottom: 1px solid var(--border);
+ padding: 2rem 1rem;
+ margin: 3rem 0;
+}
+
+/* Don't double separators when chaining sections */
+section + section,
+section:first-child {
+ border-top: 0;
+ padding-top: 0;
+}
+
+section:last-child {
+ border-bottom: 0;
+ padding-bottom: 0;
+}
+
+details {
+ padding: 0.7rem 1rem;
+}
+
+summary {
+ cursor: pointer;
+ font-weight: bold;
+ padding: 0.7rem 1rem;
+ margin: -0.7rem -1rem;
+ word-break: break-all;
+}
+
+details[open] > summary + * {
+ margin-top: 0;
+}
+
+details[open] > summary {
+ margin-bottom: 0.5rem;
+}
+
+details[open] > :last-child {
+ margin-bottom: 0;
+}
+
+/* Format tables */
+table {
+ border-collapse: collapse;
+ margin: 1.5rem 0;
+}
+
+td,
+th {
+ border: 1px solid var(--border);
+ text-align: left;
+ padding: 0.5rem;
+}
+
+th {
+ background-color: var(--accent-bg);
+ font-weight: bold;
+}
+
+tr:nth-child(even) {
+ /* Set every other cell slightly darker. Improves readability. */
+ background-color: var(--accent-bg);
+}
+
+table caption {
+ font-weight: bold;
+ margin-bottom: 0.5rem;
+}
+
+/* Format forms */
+textarea,
+select,
+input {
+ font-size: inherit;
+ font-family: inherit;
+ padding: 0.5rem;
+ margin-bottom: 0.5rem;
+ color: var(--text);
+ background-color: var(--bg);
+ border: 1px solid var(--border);
+ border-radius: var(--standard-border-radius);
+ box-shadow: none;
+ max-width: 100%;
+ display: inline-block;
+}
+label {
+ display: block;
+}
+textarea:not([cols]) {
+ width: 100%;
+}
+
+/* Add arrow to drop-down */
+select:not([multiple]) {
+ background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
+ linear-gradient(135deg, var(--text) 51%, transparent 49%);
+ background-position: calc(100% - 15px), calc(100% - 10px);
+ background-size: 5px 5px, 5px 5px;
+ background-repeat: no-repeat;
+ padding-right: 25px;
+}
+
+/* checkbox and radio button style */
+input[type="checkbox"],
+input[type="radio"] {
+ vertical-align: middle;
+ position: relative;
+ width: min-content;
+}
+
+input[type="checkbox"] + label,
+input[type="radio"] + label {
+ display: inline-block;
+}
+
+input[type="radio"] {
+ border-radius: 100%;
+}
+
+input[type="checkbox"]:checked,
+input[type="radio"]:checked {
+ background-color: var(--accent);
+}
+
+input[type="checkbox"]:checked::after {
+ /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
+ content: " ";
+ width: 0.18em;
+ height: 0.32em;
+ border-radius: 0;
+ position: absolute;
+ top: 0.05em;
+ left: 0.17em;
+ background-color: transparent;
+ border-right: solid var(--bg) 0.08em;
+ border-bottom: solid var(--bg) 0.08em;
+ font-size: 1.8em;
+ transform: rotate(45deg);
+}
+input[type="radio"]:checked::after {
+ /* creates a colored circle for the checked radio button */
+ content: " ";
+ width: 0.25em;
+ height: 0.25em;
+ border-radius: 100%;
+ position: absolute;
+ top: 0.125em;
+ background-color: var(--bg);
+ left: 0.125em;
+ font-size: 32px;
+}
+
+/* Makes input fields wider on smaller screens */
+@media only screen and (max-width: 720px) {
+ textarea,
+ select,
+ input {
+ width: 100%;
+ }
+}
+
+/* Set a height for color input */
+input[type="color"] {
+ height: 2.5rem;
+ padding: 0.2rem;
+}
+
+/* do not show border around file selector button */
+input[type="file"] {
+ border: 0;
+}
+
+/* Misc body elements */
+hr {
+ border: none;
+ height: 1px;
+ background: var(--border);
+ margin: 1rem auto;
+}
+
+mark {
+ padding: 2px 5px;
+ border-radius: var(--standard-border-radius);
+ background-color: var(--marked);
+ color: black;
+}
+
+img,
+video {
+ max-width: 100%;
+ height: auto;
+ border-radius: var(--standard-border-radius);
+}
+
+figure {
+ margin: 0;
+ display: block;
+ overflow-x: auto;
+}
+
+figcaption {
+ text-align: center;
+ font-size: 0.9rem;
+ color: var(--text-light);
+ margin-bottom: 1rem;
+}
+
+blockquote {
+ margin: 2rem 0 2rem 2rem;
+ padding: 0.4rem 0.8rem;
+ border-left: 0.35rem solid var(--accent);
+ color: var(--text-light);
+ font-style: italic;
+}
+
+cite {
+ font-size: 0.9rem;
+ color: var(--text-light);
+ font-style: normal;
+}
+
+dt {
+ color: var(--text-light);
+}
+
+/* Use mono font for code elements */
+code,
+pre,
+pre span,
+kbd,
+samp {
+ font-family: var(--mono-font);
+ color: var(--code);
+}
+
+kbd {
+ color: var(--preformatted);
+ border: 1px solid var(--preformatted);
+ border-bottom: 3px solid var(--preformatted);
+ border-radius: var(--standard-border-radius);
+ padding: 0.1rem 0.4rem;
+}
+
+pre {
+ padding: 1rem 1.4rem;
+ max-width: 100%;
+ overflow: auto;
+ color: var(--preformatted);
+}
+
+/* Fix embedded code within pre */
+pre code {
+ color: var(--preformatted);
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+
+/* Progress bars */
+/* Declarations are repeated because you */
+/* cannot combine vendor-specific selectors */
+progress {
+ width: 100%;
+}
+
+progress:indeterminate {
+ background-color: var(--accent-bg);
+}
+
+progress::-webkit-progress-bar {
+ border-radius: var(--standard-border-radius);
+ background-color: var(--accent-bg);
+}
+
+progress::-webkit-progress-value {
+ border-radius: var(--standard-border-radius);
+ background-color: var(--accent);
+}
+
+progress::-moz-progress-bar {
+ border-radius: var(--standard-border-radius);
+ background-color: var(--accent);
+ transition-property: width;
+ transition-duration: 0.3s;
+}
+
+progress:indeterminate::-moz-progress-bar {
+ background-color: var(--accent-bg);
+}
+
+dialog {
+ max-width: 40rem;
+ margin: auto;
+}
+
+dialog::backdrop {
+ background-color: var(--bg);
+ opacity: 0.8;
+}
+
+@media only screen and (max-width: 720px) {
+ dialog {
+ max-width: 100%;
+ margin: auto 1em;
+ }
+}
+
+/* Classes for buttons and notices */
+.button,
+.button:visited {
+ display: inline-block;
+ text-decoration: none;
+ border: none;
+ border-radius: 5px;
+ background: var(--accent);
+ font-size: 1rem;
+ color: var(--bg);
+ padding: 0.7rem 0.9rem;
+ margin: 0.5rem 0;
+}
+
+.button:hover,
+.button:focus {
+ filter: brightness(1.4);
+ cursor: pointer;
+}
+
+.notice {
+ background: var(--accent-bg);
+ border: 2px solid var(--border);
+ border-radius: 5px;
+ padding: 1.5rem;
+ margin: 2rem 0;
+} \ No newline at end of file
diff --git a/simple.css-2.2.0/simple.min.css b/simple.css-2.2.0/simple.min.css
new file mode 100644
index 0000000..3f555ef
--- /dev/null
+++ b/simple.css-2.2.0/simple.min.css
@@ -0,0 +1 @@
+::backdrop,:root{--sans-font:-apple-system,BlinkMacSystemFont,"Avenir Next",Avenir,"Nimbus Sans L",Roboto,"Noto Sans","Segoe UI",Arial,Helvetica,"Helvetica Neue",sans-serif;--mono-font:Consolas,Menlo,Monaco,"Andale Mono","Ubuntu Mono",monospace;--standard-border-radius:5px;--bg:#fff;--accent-bg:#f5f7ff;--text:#212121;--text-light:#585858;--border:#898EA4;--accent:#0d47a1;--code:#d81b60;--preformatted:#444;--marked:#ffdd33;--disabled:#efefef}@media (prefers-color-scheme:dark){::backdrop,:root{color-scheme:dark;--bg:#212121;--accent-bg:#2b2b2b;--text:#dcdcdc;--text-light:#ababab;--accent:#ffb300;--code:#f06292;--preformatted:#ccc;--disabled:#111}img,video{opacity:.8}}*,::after,::before{box-sizing:border-box}input,progress,select,textarea{appearance:none;-webkit-appearance:none;-moz-appearance:none}html{font-family:var(--sans-font);scroll-behavior:smooth}body{color:var(--text);background-color:var(--bg);font-size:1.15rem;line-height:1.5;display:grid;grid-template-columns:1fr min(45rem,90%) 1fr;margin:0}body>*{grid-column:2}body>header{background-color:var(--accent-bg);border-bottom:1px solid var(--border);text-align:center;padding:0 .5rem 2rem .5rem;grid-column:1/-1}body>header h1{max-width:1200px;margin:1rem auto}body>header p{max-width:40rem;margin:1rem auto}main{padding-top:1.5rem}body>footer{margin-top:4rem;padding:2rem 1rem 1.5rem 1rem;color:var(--text-light);font-size:.9rem;text-align:center;border-top:1px solid var(--border)}h1{font-size:3rem}h2{font-size:2.6rem;margin-top:3rem}h3{font-size:2rem;margin-top:3rem}h4{font-size:1.44rem}h5{font-size:1.15rem}h6{font-size:.96rem}h1,h2,h3,h4,h5,h6,p{overflow-wrap:break-word}h1,h2,h3{line-height:1.1}@media only screen and (max-width:720px){h1{font-size:2.5rem}h2{font-size:2.1rem}h3{font-size:1.75rem}h4{font-size:1.25rem}}a,a:visited{color:var(--accent)}a:hover{text-decoration:none}[role=button],button,input[type=button],input[type=reset],input[type=submit],label[type=button]{border:none;border-radius:var(--standard-border-radius);background-color:var(--accent);font-size:1rem;color:var(--bg);padding:.7rem .9rem;margin:.5rem 0}[role=button][aria-disabled=true],button[disabled],input[type=button][disabled],input[type=checkbox][disabled],input[type=radio][disabled],input[type=reset][disabled],input[type=submit][disabled],select[disabled]{cursor:not-allowed}button[disabled],input:disabled,select:disabled,textarea:disabled{cursor:not-allowed;background-color:var(--disabled);color:var(--text-light)}input[type=range]{padding:0}abbr[title]{cursor:help;text-decoration-line:underline;text-decoration-style:dotted}[role=button]:not([aria-disabled=true]):hover,button:enabled:hover,input[type=button]:enabled:hover,input[type=reset]:enabled:hover,input[type=submit]:enabled:hover,label[type=button]:hover{filter:brightness(1.4);cursor:pointer}button:focus-visible:where(:enabled,[role=button]:not([aria-disabled=true])),input:enabled:focus-visible:where([type=submit],[type=reset],[type=button]){outline:2px solid var(--accent);outline-offset:1px}header>nav{font-size:1rem;line-height:2;padding:1rem 0 0 0}header>nav ol,header>nav ul{align-content:space-around;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;list-style-type:none;margin:0;padding:0}header>nav ol li,header>nav ul li{display:inline-block}header>nav a,header>nav a:visited{margin:0 .5rem 1rem .5rem;border:1px solid var(--border);border-radius:var(--standard-border-radius);color:var(--text);display:inline-block;padding:.1rem 1rem;text-decoration:none}header>nav a:hover{border-color:var(--accent);color:var(--accent);cursor:pointer}@media only screen and (max-width:720px){header>nav a{border:none;padding:0;text-decoration:underline;line-height:1}}aside,details,pre,progress{background-color:var(--accent-bg);border:1px solid var(--border);border-radius:var(--standard-border-radius);margin-bottom:1rem}aside{font-size:1rem;width:30%;padding:0 15px;margin-left:15px;float:right}@media only screen and (max-width:720px){aside{width:100%;float:none;margin-left:0}}article,dialog,fieldset{border:1px solid var(--border);padding:1rem;border-radius:var(--standard-border-radius);margin-bottom:1rem}article h2:first-child,section h2:first-child{margin-top:1rem}section{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:2rem 1rem;margin:3rem 0}section+section,section:first-child{border-top:0;padding-top:0}section:last-child{border-bottom:0;padding-bottom:0}details{padding:.7rem 1rem}summary{cursor:pointer;font-weight:700;padding:.7rem 1rem;margin:-.7rem -1rem;word-break:break-all}details[open]>summary+*{margin-top:0}details[open]>summary{margin-bottom:.5rem}details[open]>:last-child{margin-bottom:0}table{border-collapse:collapse;margin:1.5rem 0}td,th{border:1px solid var(--border);text-align:left;padding:.5rem}th{background-color:var(--accent-bg);font-weight:700}tr:nth-child(even){background-color:var(--accent-bg)}table caption{font-weight:700;margin-bottom:.5rem}input,select,textarea{font-size:inherit;font-family:inherit;padding:.5rem;margin-bottom:.5rem;color:var(--text);background-color:var(--bg);border:1px solid var(--border);border-radius:var(--standard-border-radius);box-shadow:none;max-width:100%;display:inline-block}label{display:block}textarea:not([cols]){width:100%}select:not([multiple]){background-image:linear-gradient(45deg,transparent 49%,var(--text) 51%),linear-gradient(135deg,var(--text) 51%,transparent 49%);background-position:calc(100% - 15px),calc(100% - 10px);background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:25px}input[type=checkbox],input[type=radio]{vertical-align:middle;position:relative;width:min-content}input[type=checkbox]+label,input[type=radio]+label{display:inline-block}input[type=radio]{border-radius:100%}input[type=checkbox]:checked,input[type=radio]:checked{background-color:var(--accent)}input[type=checkbox]:checked::after{content:" ";width:.18em;height:.32em;border-radius:0;position:absolute;top:.05em;left:.17em;background-color:transparent;border-right:solid var(--bg) .08em;border-bottom:solid var(--bg) .08em;font-size:1.8em;transform:rotate(45deg)}input[type=radio]:checked::after{content:" ";width:.25em;height:.25em;border-radius:100%;position:absolute;top:.125em;background-color:var(--bg);left:.125em;font-size:32px}@media only screen and (max-width:720px){input,select,textarea{width:100%}}input[type=color]{height:2.5rem;padding:.2rem}input[type=file]{border:0}hr{border:none;height:1px;background:var(--border);margin:1rem auto}mark{padding:2px 5px;border-radius:var(--standard-border-radius);background-color:var(--marked);color:#000}img,video{max-width:100%;height:auto;border-radius:var(--standard-border-radius)}figure{margin:0;display:block;overflow-x:auto}figcaption{text-align:center;font-size:.9rem;color:var(--text-light);margin-bottom:1rem}blockquote{margin:2rem 0 2rem 2rem;padding:.4rem .8rem;border-left:.35rem solid var(--accent);color:var(--text-light);font-style:italic}cite{font-size:.9rem;color:var(--text-light);font-style:normal}dt{color:var(--text-light)}code,kbd,pre,pre span,samp{font-family:var(--mono-font);color:var(--code)}kbd{color:var(--preformatted);border:1px solid var(--preformatted);border-bottom:3px solid var(--preformatted);border-radius:var(--standard-border-radius);padding:.1rem .4rem}pre{padding:1rem 1.4rem;max-width:100%;overflow:auto;color:var(--preformatted)}pre code{color:var(--preformatted);background:0 0;margin:0;padding:0}progress{width:100%}progress:indeterminate{background-color:var(--accent-bg)}progress::-webkit-progress-bar{border-radius:var(--standard-border-radius);background-color:var(--accent-bg)}progress::-webkit-progress-value{border-radius:var(--standard-border-radius);background-color:var(--accent)}progress::-moz-progress-bar{border-radius:var(--standard-border-radius);background-color:var(--accent);transition-property:width;transition-duration:.3s}progress:indeterminate::-moz-progress-bar{background-color:var(--accent-bg)}dialog{max-width:40rem;margin:auto}dialog::backdrop{background-color:var(--bg);opacity:.8}@media only screen and (max-width:720px){dialog{max-width:100%;margin:auto 1em}}.button,.button:visited{display:inline-block;text-decoration:none;border:none;border-radius:5px;background:var(--accent);font-size:1rem;color:var(--bg);padding:.7rem .9rem;margin:.5rem 0}.button:focus,.button:hover{filter:brightness(1.4);cursor:pointer}.notice{background:var(--accent-bg);border:2px solid var(--border);border-radius:5px;padding:1.5rem;margin:2rem 0} \ No newline at end of file