From 9419f80eb7d1f887ededadb5734fabcb1d89e762 Mon Sep 17 00:00:00 2001 From: deepskyblue Date: Tue, 26 Mar 2024 05:39:21 -0400 Subject: [PATCH] Initial commit --- .editorconfig | 7 +++++++ .gitignore | 2 ++ README.md | 36 +++++++++++++++++++++++++++++++++ UNLICENSE.txt | 24 ++++++++++++++++++++++ hue.css | 32 ++++++++++++++++++++++++++++++ hum.css | 39 ++++++++++++++++++++++++++++++++++++ index.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 9 +++++++++ 8 files changed, 204 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 README.md create mode 100644 UNLICENSE.txt create mode 100644 hue.css create mode 100644 hum.css create mode 100644 index.html create mode 100644 package.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b3dfee7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd4f2b0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +.DS_Store diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc3560f --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +## [mural](https://webmural.com/0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) + +``` +⓪ +⓿ +⓪⓿ +⓿⓪⓪ +⓪⓪⓿⓿⓿ +𑱐𑱐𑱐꧰꧰꧰𑓐𑓐 +𑱐𑱐𑱐⓿꧰⓿𑓐𑓐 +⓿⓿꧰꧰꧰ +𑱐𑱐〇 +〇⓪ +⓿ +⓪ +〇 +𑓐 +𑓐〇 +〇𑓐𑓐 +〇〇〇𑓐𑓐 +𑱐𑱐𑱐𑓐𑓐ººº +𑱐𑱐𑱐〇〇〇〇〇 +〇〇〇𑱐𑱐 +𑱐〇〇 +〇𑱐 +〇 +𑱐 +〇 +꧰ +꧰꧐ +꧐〇꧰ +꧰꧰〇꧐꧐ +〇〇꧐꧐𑱐ººº +``` + +### [monsoon](https://webmural.com/0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000#wave) \ No newline at end of file diff --git a/UNLICENSE.txt b/UNLICENSE.txt new file mode 100644 index 0000000..68a49da --- /dev/null +++ b/UNLICENSE.txt @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to diff --git a/hue.css b/hue.css new file mode 100644 index 0000000..4c48187 --- /dev/null +++ b/hue.css @@ -0,0 +1,32 @@ +::selection { + background: #ee1; + color: darkviolet; +} + +:root { + background-color: coral; + background-image: radial-gradient(plum, hotpink, violet, orchid, hotpink); + color: indigo; +} + +:any-link { + color: indigo; + background-color: transparent; + text-shadow: + 2vw -3vh 1pc, + 3vw 3vh 1pc, + 5vw -3vh 1pc, + -2vw 3vh 3pc; +} + +:focus { + background-color: blueviolet; + color: plum; + outline: 1rem groove indigo; +} + +a:hover { + color: indigo; + background-color: skyblue; +} + diff --git a/hum.css b/hum.css new file mode 100644 index 0000000..0e27ffa --- /dev/null +++ b/hum.css @@ -0,0 +1,39 @@ +html { + font-family: sans-serif; + font-size: max(2em, 2vmax + 2vmin); + line-height: 1.618; +} + +body { + margin: auto; + overflow-wrap: anywhere; +} + +a { + border-radius: 100%; + font-size: max(2rem, var(--vol) * 1.618rem); + display: inline-flex; + text-decoration-line: line-through; +} + +nav { + align-items: center; + box-sizing: border-box; + contain: layout; + display: flex; + flex-flow: row wrap; + justify-content: flex-end; + margin: auto; + margin-right: 10vw; + min-height: 100vh; + padding: 20vh 10vw; +} + +:nth-child(1n) { --vol: 1 } +:nth-child(2n) { --vol: 1.618 } +:nth-child(3n) { --vol: 2.618 } +:nth-child(odd) { text-decoration-style: double } +:nth-child(even) { text-decoration-style: dotted } +:focus { text-decoration-style: solid } +:hover { text-decoration-style: wavy } +:target a { transform: rotate(99deg) } \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..7aa3d31 --- /dev/null +++ b/index.html @@ -0,0 +1,55 @@ + + + +free bees + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..65fae0b --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "scripts": { + "ff": "npm run firefox", + "firefox": "open -a firefox index.html || start firefox index.html", + "start": "npm run firefox", + "test": "npm run firefox", + "posttest": "echo 'validate online'" + } +}