From ea54de7d32e6b576ccfb430e7e57811b7c4587fe Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 17 Sep 2023 11:07:08 +0200 Subject: 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. --- Makefile | 31 - README.md | 83 -- config.go | 52 - config/debug.json | 7 - config/default.json | 7 - data/.gitignore | 1 - data/static/style.css | 1 - data/storage/recipes/0/text | 21 - data/storage/recipes/1/text | 13 - data/templates/footer.html | 4 - data/templates/head.html | 9 - data/templates/index.html | 49 - data/templates/recipe.html | 43 - data/templates/recipe_confirm_deletion.html | 25 - data/templates/recipe_edit.html | 26 - handler.go | 192 ---- main.go | 22 - recipe.go | 109 -- server.go | 44 - simple.css-2.2.0/.github/workflows/minify-css.yml | 21 - simple.css-2.2.0/.gitignore | 1 - simple.css-2.2.0/CONTRIBUTING.md | 13 - simple.css-2.2.0/LICENSE | 21 - simple.css-2.2.0/README.md | 11 - simple.css-2.2.0/index.html | 1103 --------------------- simple.css-2.2.0/package.json | 30 - simple.css-2.2.0/screenshot.png | Bin 81419 -> 0 bytes simple.css-2.2.0/simple-v1.css | 511 ---------- simple.css-2.2.0/simple-v1.min.css | 1 - simple.css-2.2.0/simple.css | 673 ------------- simple.css-2.2.0/simple.min.css | 1 - templates.go | 24 - 32 files changed, 3149 deletions(-) delete mode 100644 Makefile delete mode 100644 README.md delete mode 100644 config.go delete mode 100644 config/debug.json delete mode 100644 config/default.json delete mode 100644 data/.gitignore delete mode 120000 data/static/style.css delete mode 100644 data/storage/recipes/0/text delete mode 100644 data/storage/recipes/1/text delete mode 100644 data/templates/footer.html delete mode 100644 data/templates/head.html delete mode 100644 data/templates/index.html delete mode 100644 data/templates/recipe.html delete mode 100644 data/templates/recipe_confirm_deletion.html delete mode 100644 data/templates/recipe_edit.html delete mode 100644 handler.go delete mode 100644 main.go delete mode 100644 recipe.go delete mode 100644 server.go delete mode 100644 simple.css-2.2.0/.github/workflows/minify-css.yml delete mode 100644 simple.css-2.2.0/.gitignore delete mode 100644 simple.css-2.2.0/CONTRIBUTING.md delete mode 100644 simple.css-2.2.0/LICENSE delete mode 100644 simple.css-2.2.0/README.md delete mode 100644 simple.css-2.2.0/index.html delete mode 100644 simple.css-2.2.0/package.json delete mode 100644 simple.css-2.2.0/screenshot.png delete mode 100644 simple.css-2.2.0/simple-v1.css delete mode 100644 simple.css-2.2.0/simple-v1.min.css delete mode 100644 simple.css-2.2.0/simple.css delete mode 100644 simple.css-2.2.0/simple.min.css delete mode 100644 templates.go 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 @@ - 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 @@ - - - Recipes - - - - - - 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 @@ - - - - - {{ template "head.html" }} - - - -
- -

Recipes

-
- -
-

Here are the available recipes 😋🍳🍔🍕🥘

- - - - {{ template "footer.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 @@ - - - - - {{ template "head.html" }} - - - -
- -

{{.Recipe.Title}}

-
- -
-

For {{.Recipe.Portions}} portions you will need these ingredients:

- - - - {{if ne .Recipe.Url ""}} -

Use this link to go to the original recipe.

- {{end}} - - {{range .Recipe.Steps}} -
-

{{.Text}}

-

{{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}}

-
- {{end}} - - - - - {{ template "footer.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 @@ - - - - - {{ template "head.html" }} - - -
- -

Delete a recipe

-
- -
-

Do you really want to delete this recipe?

-
- - -
- {{ template "footer.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 @@ - - - - - {{ template "head.html" }} - - -
- -

{{.Title}}

-
- -
-
- - - - -
- {{ template "footer.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).** - -![Screenshot of Simple.css](screenshot.png) - -## Supported Browsers - -Any evergreen browser > IE11 (why is IE still a thing?) diff --git a/simple.css-2.2.0/index.html b/simple.css-2.2.0/index.html deleted file mode 100644 index 22bff80..0000000 --- a/simple.css-2.2.0/index.html +++ /dev/null @@ -1,1103 +0,0 @@ - - - - - - - Simple.css Test Page - - - - - - - - - - - - -
-

Simple.css Test Page

-

This is a test page filled with common HTML elements.

- -
- -
-
-
-

Text

-
-
-
-

Headings

-
- -

Heading 1

-

Heading 2

-

Heading 3

-

Heading 4

-
Heading 5
-
Heading 6
- - -
-
-
-

Paragraphs

-
- -

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.

- - -
-
-
-

Blockquotes

-
- -
-

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.

-

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.

- Said no one, ever. -
- - -
-
-
-

Asides

-
- -

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!

-

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.

-

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.

- -
-
-
-

Lists

-
- -

Description list

-
-
Description term
-
Description details.
-
Additional details.
-
Description term
-
This is a second term
-
This is a third term
-
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.
-
-

Ordered List

-
    -
  1. List Item 1
  2. -
  3. - List Item 2 -
      -
    1. List Item 1
    2. -
    3. - List Item 2 -
        -
      1. List Item 1
      2. -
      3. - List Item 2 -
          -
        1. List Item 1
        2. -
        3. - List Item 2 -
            -
          1. List Item 1
          2. -
          3. List Item 2
          4. -
          5. List Item 3
          6. -
          -
        4. -
        5. List Item 3
        6. -
        -
      4. -
      5. List Item 3
      6. -
      -
    4. -
    5. List Item 3
    6. -
    -
  4. -
  5. List Item 3
  6. -
-

Unordered List

-
    -
  • List Item 1
  • -
  • - List Item 2 -
      -
    • List Item 1
    • -
    • - List Item 2 -
        -
      • List Item 1
      • -
      • - List Item 2 -
          -
        • List Item 1
        • -
        • - List Item 2 -
            -
          • List Item 1
          • -
          • List Item 2
          • -
          • List Item 3
          • -
          -
        • -
        • List Item 3
        • -
        -
      • -
      • List Item 3
      • -
      -
    • -
    • List Item 3
    • -
    -
  • -
  • List Item 3
  • -
- - -
-
-
-

Details / Summary

-
-
- Expand for details -

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.

-
- -
-
-
-

Address

-
-
- Written by Jon Doe.
- Visit us at:
- Example.com
- Box 564, Disneyland
- USA -
- -
-
-
-

Horizontal rules

-
-

- 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. -

-

- 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. -

-
-

- 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. -

-

- 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. -

- -
-
-
-

Tabular data

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Table Caption
Table Heading 1Table Heading 2Table Heading 3Table Heading 4Table Heading 5
Table Footer 1Table Footer 2Table Footer 3Table Footer 4Table Footer 5
Table Cell 1Table Cell 2Table Cell 3Table Cell 4Table Cell 5
Table Cell 1Table Cell 2Table Cell 3Table Cell 4Table Cell 5
Table Cell 1Table Cell 2Table Cell 3Table Cell 4Table Cell 5
Table Cell 1Table Cell 2Table Cell 3Table Cell 4Table Cell 5
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Overflowing table
Header_1Header_2Header_3Header_4Header_5Header_6Header_7Header_8Header_9Header_10
Row:1 Cell:1Row:1 Cell:2Row:1 Cell:3Row:1 Cell:4Row:1 Cell:5Row:1 Cell:6Row:1 Cell:7Row:1 Cell:8Row:1 Cell:9Row:1 Cell:10
Row:2 Cell:1Row:2 Cell:2Row:2 Cell:3Row:2 Cell:4Row:2 Cell:5Row:2 Cell:6Row:2 Cell:7Row:2 Cell:8Row:2 Cell:9Row:2 Cell:10
Row:3 Cell:1Row:3 Cell:2Row:3 Cell:3Row:3 Cell:4Row:3 Cell:5Row:3 Cell:6Row:3 Cell:7Row:3 Cell:8Row:3 Cell:9Row:3 Cell:10
Row:4 Cell:1Row:4 Cell:2Row:4 Cell:3Row:4 Cell:4Row:4 Cell:5Row:4 Cell:6Row:4 Cell:7Row:4 Cell:8Row:4 Cell:9Row:4 Cell:10
Row:5 Cell:1Row:5 Cell:2Row:5 Cell:3Row:5 Cell:4Row:5 Cell:5Row:5 Cell:6Row:5 Cell:7Row:5 Cell:8Row:5 Cell:9Row:5 Cell:10
Row:6 Cell:1Row:6 Cell:2Row:6 Cell:3Row:6 Cell:4Row:6 Cell:5Row:6 Cell:6Row:6 Cell:7Row:6 Cell:8Row:6 Cell:9Row:6 Cell:10
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Overflowing table in figure
Header_1Header_2Header_3Header_4Header_5Header_6Header_7Header_8Header_9Header_10
Row:1 Cell:1Row:1 Cell:2Row:1 Cell:3Row:1 Cell:4Row:1 Cell:5Row:1 Cell:6Row:1 Cell:7Row:1 Cell:8Row:1 Cell:9Row:1 Cell:10
Row:2 Cell:1Row:2 Cell:2Row:2 Cell:3Row:2 Cell:4Row:2 Cell:5Row:2 Cell:6Row:2 Cell:7Row:2 Cell:8Row:2 Cell:9Row:2 Cell:10
Row:3 Cell:1Row:3 Cell:2Row:3 Cell:3Row:3 Cell:4Row:3 Cell:5Row:3 Cell:6Row:3 Cell:7Row:3 Cell:8Row:3 Cell:9Row:3 Cell:10
Row:4 Cell:1Row:4 Cell:2Row:4 Cell:3Row:4 Cell:4Row:4 Cell:5Row:4 Cell:6Row:4 Cell:7Row:4 Cell:8Row:4 Cell:9Row:4 Cell:10
Row:5 Cell:1Row:5 Cell:2Row:5 Cell:3Row:5 Cell:4Row:5 Cell:5Row:5 Cell:6Row:5 Cell:7Row:5 Cell:8Row:5 Cell:9Row:5 Cell:10
Row:6 Cell:1Row:6 Cell:2Row:6 Cell:3Row:6 Cell:4Row:6 Cell:5Row:6 Cell:6Row:6 Cell:7Row:6 Cell:8Row:6 Cell:9Row:6 Cell:10
-
Table in figure
-
-
- Overflowing table in details - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Overflowing table
Header_1Header_2Header_3Header_4Header_5Header_6Header_7Header_8Header_9Header_10
Row:1 Cell:1Row:1 Cell:2Row:1 Cell:3Row:1 Cell:4Row:1 Cell:5Row:1 Cell:6Row:1 Cell:7Row:1 Cell:8Row:1 Cell:9Row:1 Cell:10
Row:2 Cell:1Row:2 Cell:2Row:2 Cell:3Row:2 Cell:4Row:2 Cell:5Row:2 Cell:6Row:2 Cell:7Row:2 Cell:8Row:2 Cell:9Row:2 Cell:10
Row:3 Cell:1Row:3 Cell:2Row:3 Cell:3Row:3 Cell:4Row:3 Cell:5Row:3 Cell:6Row:3 Cell:7Row:3 Cell:8Row:3 Cell:9Row:3 Cell:10
Row:4 Cell:1Row:4 Cell:2Row:4 Cell:3Row:4 Cell:4Row:4 Cell:5Row:4 Cell:6Row:4 Cell:7Row:4 Cell:8Row:4 Cell:9Row:4 Cell:10
Row:5 Cell:1Row:5 Cell:2Row:5 Cell:3Row:5 Cell:4Row:5 Cell:5Row:5 Cell:6Row:5 Cell:7Row:5 Cell:8Row:5 Cell:9Row:5 Cell:10
Row:6 Cell:1Row:6 Cell:2Row:6 Cell:3Row:6 Cell:4Row:6 Cell:5Row:6 Cell:6Row:6 Cell:7Row:6 Cell:8Row:6 Cell:9Row:6 Cell:10
-
- -
-
-
-

Code

-
- -

Keyboard input: Cmd

-

Inline code: <div>code</div>

-

Sample output: This is sample output from a computer program. -

-

Pre-formatted text

-
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 { | } ~ 
- - -
-
-
-

Text Sections

-
-
-

Header 1

-

Test section 1

-
-
-

Header 2

-

Test section 2

-
-
-

Header 3

-

Test section 3

-
-
-
-
-

Inline elements

-
- -

This is a text link.

-

Strong is used to indicate strong importance.

-

This text has added emphasis.

-

The b element is stylistically different text from normal text, without any special - importance.

-

The i element is text that is offset from the normal text.

-

The u element is text with an unarticulated, though explicitly rendered, non-textual - annotation.

-

This text is deleted and This text is inserted.

-

This text has a strikethrough.

-

Superscript®.

-

Subscript for things like H2O.

-

This small text is small for fine print, etc.

-

Abbreviation: HTML

-

This text is a short inline - quotation.

-

This is a citation.

-

The dfn element indicates a definition.

-

The mark element indicates a highlight.

-

The variable element, such as x = y.

-

The time element:

- - -
-
-
-

HTML Comments

-
- -

There is comment here: - -

-

There is a comment spanning multiple tags and lines below here.

- - -             -
-
-
-
-

Embedded content

-
-
-
-

Images

-
- -

Plain <img> element

-

Photo of a kitten

-

<figure> element with <img> element

-
Photo of a kitten
-

<figure> element with <img> and - <figcaption> elements -

-
- Photo of a kitten -
Here is a caption for this image.
-
-

<figure> element with a <picture> element

-
- - - Photo of a kitten - -
- - -
-
-
-

Background images

-
-
-
- -
-
-
-

Audio

-
- - -
-
-
-

Video

-
- - -
-
-
-

Canvas

-
- canvas - -
-
-
-

Meter

-
- 2 out of 10 - -
-
-
-

Progress

-
- - progress - - 30% - -
-
-
-

Inline SVG

-
- - - - -
-
-
-

IFrame

-
- - -
-
-
-

Embed

-
- - -
-
-
-

Object

-
- - -
-
-
-

Dialog

-
- - -

Dialog

-

Dialogs are a new HTML5 element that can be used to create modal dialogs or pop-up windows.

-
- -
-
- -
-
-
-
-

Form elements

-
-
-
- Input fields -

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-
-

[Top]

-
- Select menus -

- - -

-

- - -

-
-

[Top]

-
- Checkboxes -

Nested label > input

-
    -
  • -
  • -
  • -
-

Sibling input + label

-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
-
-

[Top]

-
- Radio buttons -

Nested label > input

-
    -
  • -
  • -
  • -
-

Sibling input + label

-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
-
-

[Top]

-
- Textareas -

- - -

-
-

[Top]

-
- HTML5 inputs -

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - -

-

- - - - -

-
-

[Top]

-
- Action buttons -

- - - - -

-

- - - - -

-
-

[Top]

-
-
-
- - - - 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 deleted file mode 100644 index 06e9fdd..0000000 Binary files a/simple.css-2.2.0/screenshot.png and /dev/null differ 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
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 - } -} -- cgit v1.2.3-70-g09d2