diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-02 20:43:23 -0800 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-02 20:43:23 -0800 |
commit | e4f968cec07f2e881e7ef5966a5bf56735a96ee8 (patch) | |
tree | 3f4854040dde53c7369f323b9a5e1353c369bbe3 /template/static | |
parent | 8e33d86d2735476ebabc7878af3d27c41b856ad6 (diff) | |
download | oldinfra-e4f968cec07f2e881e7ef5966a5bf56735a96ee8.tar.gz oldinfra-e4f968cec07f2e881e7ef5966a5bf56735a96ee8.zip |
make it look better
Diffstat (limited to 'template/static')
-rw-r--r-- | template/static/css/styles.css | 41 | ||||
-rw-r--r-- | template/static/img/favicon.ico | bin | 0 -> 591 bytes |
2 files changed, 41 insertions, 0 deletions
diff --git a/template/static/css/styles.css b/template/static/css/styles.css index f5d4f78..c025c3e 100644 --- a/template/static/css/styles.css +++ b/template/static/css/styles.css @@ -9,10 +9,51 @@ * { box-sizing: border-box; +} + +html { + margin: 0; + padding: 0; color: var(--text-color); font-family: GeistMono; } body { background-color: var(--background-color); + min-height: 100vh; +} + +hr { + border: 0; + border-top: 1px solid var(--text-color); + + margin: 20px 0; +} + +.container { + max-width: 1600px; + margin: auto; + background-color: var(--container-bg); + padding: 1rem; +} + + +a { + color: var(--link-color); + text-decoration: none; + font-weight: bold; +} +a:hover { + text-decoration: underline; +} + +.info { + margin-bottom: 1rem; + max-width: 600px; + + transition: opacity 0.3s; +} + +.info:hover { + opacity: 0.8; } diff --git a/template/static/img/favicon.ico b/template/static/img/favicon.ico Binary files differnew file mode 100644 index 0000000..58c53c3 --- /dev/null +++ b/template/static/img/favicon.ico |