diff options
author | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
commit | ea54de7d32e6b576ccfb430e7e57811b7c4587fe (patch) | |
tree | 4182e9c401e571adb53f1d6cbe2b072c171c87b2 | |
parent | d0f58c4812c8b5821e9ed15806fae44f7b1fb095 (diff) | |
download | ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar.zst ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.zip |
Remove complete implementation
Restarting from scratch seems to be the fastest approach to switch to
sqlite and get rid of some other structural mistakes from the past.
32 files changed, 0 insertions, 3149 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 92507ae..0000000 --- a/Makefile +++ /dev/null @@ -1,31 +0,0 @@ - -DESTDIR="" # leave empty for the current system or provide a fakeroot here -PREFIX="/usr" - -.PHONY: all clean install debug - -all: - mkdir -p build - go build -o build/ceres *.go - -clean: - rm -rf build - -install: all - install -Dm 755 build/ceres $(DESTDIR)$(PREFIX)/bin/ceres - - install -Dm 644 config/default.json $(DESTDIR)/etc/ceres/config.json - - install -Dm 644 data/static/style.css $(DESTDIR)$(PREFIX)/share/ceres/static/style.css - - install -Dm 644 data/templates/footer.html $(DESTDIR)$(PREFIX)/share/ceres/templates/footer.html - install -Dm 644 data/templates/index.html $(DESTDIR)$(PREFIX)/share/ceres/templates/index.html - install -Dm 644 data/templates/recipe_edit.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_edit.html - install -Dm 644 data/templates/head.html $(DESTDIR)$(PREFIX)/share/ceres/templates/head.html - install -Dm 644 data/templates/recipe_confirm_deletion.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_confirm_deletion.html - install -Dm 644 data/templates/recipe.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe.html - - install -dm 700 $(DESTDIR)/var/lib/ceres - -debug: - go run *.go -c config/debug.json diff --git a/README.md b/README.md deleted file mode 100644 index 3b21926..0000000 --- a/README.md +++ /dev/null @@ -1,83 +0,0 @@ - - -# Ceres - Recipe server for your favorite dishes - -With Ceres you can run a recipe server in your home network. Have a look at the -[project page][1] for more details. - -All notable changes are documented in the [changelog][2]. - - -## Expected environment and dependencies - -Ceres should run on every Linux distribution. If it does not run on your Linux -distribution, please contact me and we will see what we can do. - -Please install the following dependencies to build and run Ceres: - -- [GNU Coreutils][4] -- [Git][5] -- [Make][6] -- [Go][7] - - -## Build and run Ceres - -If you just cloned the repository it is important to initialize Git submodules -to add dependencies via `git submodule update --init`. - -Then it is time to build and run Ceres for the first time in debug mode like -this: - -``` - make debug -``` - -In addition you can also build the server executable with `make all`. The -result is in the build folder and can be run with: - -``` - ./build/ceres -c config/debug.json -``` - -The used `config/debug.json` config file is only for debugging. If you want to -run it as a server, have a look at the `config/default.json` file. - - -## Packaging and Installation - -If you want to package Ceres for a Linux distribution, feel free to use the -Make target for installation. Use it for example with a fakeroot: - -``` - mkdir fakeroot - make DESTDIR=fakeroot install - tree fakeroot -``` - -Please add a startup script or service unit for the init system of your -distribution. Furthermore create a system user to run the server and grant him -ownership to the data directory specified in the configuration file (default is -`/var/lib/ceres`): - -``` - useradd --system ceres - chown ceres:ceres /var/lib/ceres -``` - -If you want to install Ceres to your system, it is recommended to first do the -packaging. One reason is that there is no uninstall Make target. This would -have to be tested and package managers are way better in cleanly remove stuff -from your system. - -If you insist to install it without an uninstall option, run `make install` -with root rights and write a service unit or something else to run the -executable at boot. - - -[1]: https://xengineering.eu/git/ceres -[2]: ./CHANGELOG.md -[4]: https://www.gnu.org/software/coreutils/ -[5]: https://git-scm.com/ -[6]: https://www.gnu.org/software/make/ -[7]: https://go.dev/ diff --git a/config.go b/config.go deleted file mode 100644 index e28cc1b..0000000 --- a/config.go +++ /dev/null @@ -1,52 +0,0 @@ -package main - -import ( - "encoding/json" - "flag" - "io/ioutil" - "log" - "os" - "path/filepath" -) - -type RuntimeConfig struct { - Path string - Host string `json:"bind_host"` - Port string `json:"bind_port"` - Static string `json:"static"` - Templates string `json:"templates"` - Data string `json:"data"` -} - -func GetRuntimeConfig() RuntimeConfig { - - config := RuntimeConfig{} - - flag.StringVar(&config.Path, "c", "/etc/ceres/config.json", - "Path to ceres configuration file") - flag.Parse() - - configFile, err := os.Open(config.Path) - defer configFile.Close() - if err != nil { - log.Fatalf("Could not open configuration file %s", config.Path) - } - - configData, err := ioutil.ReadAll(configFile) - if err != nil { - log.Fatalf("Could not read configuration file %s", config.Path) - } - - err = json.Unmarshal(configData, &config) - if err != nil { - log.Fatalf("Could not parse configuration file %s", config.Path) - } - - abs, err := filepath.Abs(config.Path) - if err != nil { - log.Fatalf("Could not translate %s to absolute path.", config.Path) - } - log.Printf("Config file: %s\n", abs) - - return config -} diff --git a/config/debug.json b/config/debug.json deleted file mode 100644 index ff9b1d3..0000000 --- a/config/debug.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "bind_host":"127.0.0.1", - "bind_port":"8080", - "static":"./data/static", - "templates":"./data/templates", - "data":"./data/storage" -} diff --git a/config/default.json b/config/default.json deleted file mode 100644 index 05cb95d..0000000 --- a/config/default.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "bind_host":"127.0.0.1", - "bind_port":"8080", - "static":"/usr/share/ceres/static", - "templates":"/usr/share/ceres/templates", - "data":"/var/lib/ceres" -} diff --git a/data/.gitignore b/data/.gitignore deleted file mode 100644 index 0b7e618..0000000 --- a/data/.gitignore +++ /dev/null @@ -1 +0,0 @@ -./storage/* diff --git a/data/static/style.css b/data/static/style.css deleted file mode 120000 index e73301c..0000000 --- a/data/static/style.css +++ /dev/null @@ -1 +0,0 @@ -../../simple.css-2.2.0/simple.min.css
\ No newline at end of file diff --git a/data/storage/recipes/0/text b/data/storage/recipes/0/text deleted file mode 100644 index b0adef8..0000000 --- a/data/storage/recipes/0/text +++ /dev/null @@ -1,21 +0,0 @@ -{ - "title":"Some delicious food", - "portions": 4, - "url":"https://example.org", - "steps":[ - { - "text":"Prepare vegetables.", - "ingredients":[ - {"amount":3, "unit":"pieces", "type":"carrot"}, - {"amount":250, "unit":"g", "type":"tomato"} - ] - }, - { - "text":"Cook those vegetables", - "ingredients":[ - {"amount":0, "unit":"", "type":"water"}, - {"amount":0, "unit":"", "type":"salt"} - ] - } - ] -} diff --git a/data/storage/recipes/1/text b/data/storage/recipes/1/text deleted file mode 100644 index 1c4acb8..0000000 --- a/data/storage/recipes/1/text +++ /dev/null @@ -1,13 +0,0 @@ -{ - "title":"Very delicious stuff", - "portions": 4, - "url":"https://example.org", - "steps":[ - { - "text":"Bake the frozen pizza!", - "ingredients":[ - {"amount":4, "unit":"pieces", "type":"pizza"} - ] - } - ] -} diff --git a/data/templates/footer.html b/data/templates/footer.html deleted file mode 100644 index 1b5bf15..0000000 --- a/data/templates/footer.html +++ /dev/null @@ -1,4 +0,0 @@ - <footer> - <hr> - <p>The <a href="https://xengineering.eu/git/ceres">Ceres</a> recipe server is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL v3</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p> - </footer> diff --git a/data/templates/head.html b/data/templates/head.html deleted file mode 100644 index 33f0c6d..0000000 --- a/data/templates/head.html +++ /dev/null @@ -1,9 +0,0 @@ - <head> - - <title>Recipes</title> - - <meta charset="utf-8"/> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="/static/style.css" type="text/css"> - - </head> diff --git a/data/templates/index.html b/data/templates/index.html deleted file mode 100644 index 0b97187..0000000 --- a/data/templates/index.html +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>Recipes</h1> - </header> - - <main> - <p>Here are the available recipes 😋🍳🍔🍕🥘</p> - <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input> - <ul id="recipes">{{range .}} - <li><a href="./recipe?id={{.Id}}">{{.Title}}</a></li>{{end}} - </ul> - - {{ template "footer.html" }} - - </main> - - <script> - function filter() { - var input, query, ul, li, a, i, txtValue; - input = document.getElementById('search'); - query = input.value.toUpperCase(); - ul = document.getElementById("recipes"); - li = ul.getElementsByTagName('li'); - - for (i = 0; i < li.length; i++) { - a = li[i].getElementsByTagName("a")[0]; - txtValue = a.textContent || a.innerText; - if (txtValue.toUpperCase().indexOf(query) > -1) { - li[i].style.display = ""; - } else { - li[i].style.display = "none"; - } - } - } - </script> - </body> - -</html> diff --git a/data/templates/recipe.html b/data/templates/recipe.html deleted file mode 100644 index f95ace6..0000000 --- a/data/templates/recipe.html +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>{{.Recipe.Title}}</h1> - </header> - - <main> - <p>For {{.Recipe.Portions}} portions you will need these ingredients:</p> - - <ul> - {{range .Recipe.Steps}}{{range $i, $el := .Ingredients}} - <li>{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}</li> - {{end}}{{end}} - </ul> - - {{if ne .Recipe.Url ""}} - <p>Use this <a href="{{.Recipe.Url}}">link</a> to go to the original recipe.</p> - {{end}} - - {{range .Recipe.Steps}} - <section> - <p>{{.Text}}</p> - <p><i>{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}{{end}}</i></p> - </section> - {{end}} - - <a href="/recipe/edit?id={{.Id}}"><button>edit</button></a> - <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> - - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html deleted file mode 100644 index 17c4da8..0000000 --- a/data/templates/recipe_confirm_deletion.html +++ /dev/null @@ -1,25 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>Delete a recipe</h1> - </header> - - <main> - <p>Do you really want to delete this recipe?</p> - <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST"> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - <button style="background-color:red" type="submit">delete</button> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html deleted file mode 100644 index 6ef41f8..0000000 --- a/data/templates/recipe_edit.html +++ /dev/null @@ -1,26 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>{{.Title}}</h1> - </header> - - <main> - <form action="/recipe/edit" method="POST"> - <input type="hidden" name="id" value="{{.Id}}" /> - <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea> - <button type="submit">save</button> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/handler.go b/handler.go deleted file mode 100644 index 3064469..0000000 --- a/handler.go +++ /dev/null @@ -1,192 +0,0 @@ -package main - -import ( - "encoding/json" - "fmt" - "io/ioutil" - "net/http" - "os" - "path/filepath" - "regexp" - "sort" - "strconv" -) - -const ( - VALID_ID_REGEX = `^[0-9]+$` -) - -func indexGet(w http.ResponseWriter, r *http.Request) { - list := getRecipeList() - sort.Sort(list) - ServeTemplate(w, "index.html", list) -} - -func recipeGet(w http.ResponseWriter, r *http.Request) { - - ids := r.URL.Query()["id"] - if len(ids) != 1 { - msg := fmt.Sprintf("Exactly 1 'id' URL parameter expected but %d provided.", len(ids)) - http.Error(w, msg, 400) - return - } - idStr := ids[0] - - rec, err := getRecipe(idStr) - if err != nil { - http.Error(w, "Could not get recipe.", 400) - return - } - - data := struct { - Id string - Recipe recipe - }{idStr, rec} - - ServeTemplate(w, "recipe.html", data) -} - -func recipeEditGet(w http.ResponseWriter, r *http.Request) { - - ids := r.URL.Query()["id"] - if len(ids) != 1 { - msg := fmt.Sprintf("Exactly 1 'id' URL parameter expected but %d provided.", len(ids)) - http.Error(w, msg, 400) - return - } - idStr := ids[0] - - text, err := getRecipeText(idStr) - if err != nil { - http.Error(w, "Could not get recipe.", 400) - return - } - - rec, err := getRecipe(idStr) - if err != nil { - http.Error(w, "Could not get recipe.", 400) - return - } - - recipe := struct { - Id string - Title string - Text string - }{idStr, rec.Title, string(text)} - - ServeTemplate(w, "recipe_edit.html", recipe) -} - -func recipeEditPost(w http.ResponseWriter, r *http.Request) { - - r.ParseForm() - - for _, v := range []string{"id", "text"} { - if len(r.Form[v]) != 1 { - http.Error(w, "Exactly 1 '"+v+"' form parameter expected.", 400) - return - } - } - - idStr := r.Form["id"][0] - idRegex := regexp.MustCompile(VALID_ID_REGEX) - if !(idRegex.MatchString(idStr)) { - http.Error(w, "Bad 'id' URL parameter.", 400) - return - } - - buffer := []byte(r.Form["text"][0]) - err := json.Unmarshal(buffer, &recipe{}) - if err != nil { - http.Error(w, "Text input could not be parsed to recipe.", 400) - return - } - - textpath := filepath.Join(config.Data, "recipes", idStr, "text") - err = ioutil.WriteFile(textpath, buffer, 0644) - if err != nil { - http.Error(w, "Could not save new text for recipe.", 500) - } - - http.Redirect(w, r, "/recipe?id="+idStr, 303) -} - -func recipeConfirmDeletionGet(w http.ResponseWriter, r *http.Request) { - - ids := r.URL.Query()["id"] - if len(ids) != 1 { - http.Error(w, "Exactly 1 'id' URL parameter expected.", 400) - return - } - - ServeTemplate(w, "recipe_confirm_deletion.html", struct{ Id string }{ids[0]}) -} - -func recipeConfirmDeletionPost(w http.ResponseWriter, r *http.Request) { - - ids := r.URL.Query()["id"] - if len(ids) != 1 { - http.Error(w, "Exactly 1 'id' URL parameter expected.", 400) - return - } - - recipedir := filepath.Join(config.Data, "recipes", ids[0]) - err := os.RemoveAll(recipedir) - if err != nil { - http.Error(w, "Could not delete recipe.", 500) - return - } - - http.Redirect(w, r, "/index.html", 303) -} - -func addRecipesGet(w http.ResponseWriter, r *http.Request) { - - var biggest int = -1 - - entries, _ := os.ReadDir(filepath.Join(config.Data, "recipes")) - for _, v := range entries { - if v.IsDir() == false { - continue - } - - number, err := strconv.Atoi(v.Name()) - if err != nil { - continue - } - - if number > biggest { - biggest = number - } - } - - newId := biggest + 1 - newIdStr := strconv.Itoa(newId) - - recipedir := filepath.Join(config.Data, "recipes", newIdStr) - err := os.Mkdir(recipedir, 0755) - if err != nil { - http.Error(w, "Could not create new recipe!", 500) - return - } - - rec, _ := json.MarshalIndent(recipe{}, "", " ") - - textpath := filepath.Join(config.Data, "recipes", newIdStr, "text") - err = os.WriteFile(textpath, rec, 0644) - if err != nil { - http.Error(w, "Could not create new recipe!", 500) - return - } - - redirect := fmt.Sprintf("/recipe/edit?id=%d", newId) - http.Redirect(w, r, redirect, 303) -} - -func staticGet(filename string) (func(w http.ResponseWriter, r *http.Request)) { - - return func(w http.ResponseWriter, r *http.Request) { - path := filepath.Join(config.Static, filename) - http.ServeFile(w, r, path) - } -} diff --git a/main.go b/main.go deleted file mode 100644 index 5f86d3d..0000000 --- a/main.go +++ /dev/null @@ -1,22 +0,0 @@ -package main - -import ( - "log" - "os" - "path/filepath" - "text/template" -) - -var config RuntimeConfig -var templates *template.Template - -func main() { - log.Printf("Started Ceres recipe server.\n") - config = GetRuntimeConfig() - err := os.Mkdir(filepath.Join(config.Data, "recipes"), 0750) - if err != nil && !os.IsExist(err) { - log.Fatal(err) - } - templates = setupTemplates() - runServer() -} diff --git a/recipe.go b/recipe.go deleted file mode 100644 index b80286a..0000000 --- a/recipe.go +++ /dev/null @@ -1,109 +0,0 @@ -package main - -import ( - "encoding/json" - "io/ioutil" - "log" - "os" - "path/filepath" - "strconv" -) - -type recipe struct { - Title string - Portions int - Url string - Steps []struct { - Text string - Ingredients []ingredient - } -} - -type ingredient struct { - Amount float32 - Unit string - Type string -} - -func getRecipeText(id string) ([]byte, error) { - var b []byte - textpath := filepath.Join(config.Data, "recipes", id, "text") - b, err := ioutil.ReadFile(textpath) - if err != nil { - return b, err - } - return b, nil -} - -func getRecipe(id string) (recipe, error) { - r := recipe{} - - data, err := getRecipeText(id) - if err != nil { - return r, err - } - - err = json.Unmarshal(data, &r) - if err != nil { - return r, err - } - - if r.Title == "" { - r.Title = "recipe without title" - } - - return r, nil -} - -type recipeList []struct { - Id string - Title string -} - -func (a recipeList) Len() int { return len(a) } -func (a recipeList) Swap(i, j int) { a[i], a[j] = a[j], a[i] } -func (a recipeList) Less(i, j int) bool { return a[i].Title < a[j].Title } - -func getRecipeList() recipeList { - recipes := make(recipeList, 0) - - path := filepath.Join(config.Data, "recipes") - entries, err := os.ReadDir(path) - if err == nil { - for _, v := range entries { - if v.IsDir() == false { - continue - } - - _, err = strconv.Atoi(v.Name()) - if err != nil { - continue - } - - textpath := filepath.Join(config.Data, "recipes", v.Name(), "text") - data, err := ioutil.ReadFile(textpath) - if err != nil { - continue - } - - r := recipe{} - err = json.Unmarshal(data, &r) - if err != nil { - continue - } - - if r.Title == "" { - r.Title = "recipe without title" - } - - recipes = append(recipes, struct { - Id string - Title string - }{v.Name(), r.Title}) - } - } else { - log.Printf("Could not read directory '%s'\n", path) - } - - return recipes -} diff --git a/server.go b/server.go deleted file mode 100644 index 3c82f36..0000000 --- a/server.go +++ /dev/null @@ -1,44 +0,0 @@ -package main - -import ( - "log" - "net/http" - "strings" -) - -func runServer() { - address := config.Host + ":" + config.Port - http.HandleFunc("/", route) - log.Println("Serving content at 'http://" + address + "'.") - log.Fatal(http.ListenAndServe(address, nil)) -} - -func route(w http.ResponseWriter, r *http.Request) { - - tab := routingTable{ - {"/favicon.ico", "GET", staticGet("favicon.ico")}, - {"/static/style.css", "GET", staticGet("style.css")}, - {"/add_recipes", "GET", addRecipesGet}, - {"/recipe/confirm-deletion", "GET", recipeConfirmDeletionGet}, - {"/recipe/confirm-deletion", "POST", recipeConfirmDeletionPost}, - {"/recipe/edit", "GET", recipeEditGet}, - {"/recipe/edit", "POST", recipeEditPost}, - {"/recipe", "GET", recipeGet}, - {"/", "GET", indexGet}, - } - - for _, v := range(tab) { - if strings.HasPrefix(r.URL.String(), v.target) && r.Method == v.method { - v.handler(w, r) - return - } - } - - http.Error(w, "Bad Request", 400) -} - -type routingTable []struct { - target string - method string - handler func(w http.ResponseWriter, r *http.Request) -} diff --git a/simple.css-2.2.0/.github/workflows/minify-css.yml b/simple.css-2.2.0/.github/workflows/minify-css.yml deleted file mode 100644 index b359b34..0000000 --- a/simple.css-2.2.0/.github/workflows/minify-css.yml +++ /dev/null @@ -1,21 +0,0 @@ -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 deleted file mode 100644 index e43b0f9..0000000 --- a/simple.css-2.2.0/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.DS_Store diff --git a/simple.css-2.2.0/CONTRIBUTING.md b/simple.css-2.2.0/CONTRIBUTING.md deleted file mode 100644 index 5a893e5..0000000 --- a/simple.css-2.2.0/CONTRIBUTING.md +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index c496ecf..0000000 --- a/simple.css-2.2.0/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -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 deleted file mode 100644 index 7d52002..0000000 --- a/simple.css-2.2.0/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# 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).** - - - -## 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 deleted file mode 100644 index 22bff80..0000000 --- a/simple.css-2.2.0/index.html +++ /dev/null @@ -1,1103 +0,0 @@ -<!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><div>code</div></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 - ! " # $ % & ' ( ) * + , - . / - 0 1 2 3 4 5 6 7 8 9 : ; < = > ? - @ 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><img></code> element</h3> - <p><img src="https://placekitten.com/480/480" alt="Photo of a kitten"></p> - <h3><code><figure></code> element with <code><img></code> element</h3> - <figure><img src="https://placekitten.com/420/420" alt="Photo of a kitten"></figure> - <h3><code><figure></code> element with <code><img></code> and - <code><figcaption></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><figure></code> element with a <code><picture></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"><button type=submit></button> - <button type="button"><button type=button></button> - <button type="reset"><button type=reset></button> - <button type="button" disabled><button disabled></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 deleted file mode 100644 index da74c58..0000000 --- a/simple.css-2.2.0/package.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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 Binary files differdeleted file mode 100644 index 06e9fdd..0000000 --- a/simple.css-2.2.0/screenshot.png +++ /dev/null diff --git a/simple.css-2.2.0/simple-v1.css b/simple.css-2.2.0/simple-v1.css deleted file mode 100644 index b0f123e..0000000 --- a/simple.css-2.2.0/simple-v1.css +++ /dev/null @@ -1,511 +0,0 @@ -/* 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 deleted file mode 100644 index 36b37ae..0000000 --- a/simple.css-2.2.0/simple-v1.min.css +++ /dev/null @@ -1 +0,0 @@ -: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 deleted file mode 100644 index b67d07a..0000000 --- a/simple.css-2.2.0/simple.css +++ /dev/null @@ -1,673 +0,0 @@ -/* 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 deleted file mode 100644 index 3f555ef..0000000 --- a/simple.css-2.2.0/simple.min.css +++ /dev/null @@ -1 +0,0 @@ -::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 diff --git a/templates.go b/templates.go deleted file mode 100644 index 2769926..0000000 --- a/templates.go +++ /dev/null @@ -1,24 +0,0 @@ -package main - -import ( - "log" - "net/http" - "text/template" -) - -func setupTemplates() *template.Template { - t, err := template.ParseGlob(config.Templates + "/*.html") - if err != nil { - panic(err) - } - return t -} - -func ServeTemplate(w http.ResponseWriter, name string, data interface{}) { - err := templates.ExecuteTemplate(w, name, data) - if err != nil { - log.Print(err) - http.Error(w, http.StatusText(404), 404) - return - } -} |