diff options
| author | hazel <hazel@hazelthats.me> | 2026-03-06 17:56:45 +0100 |
|---|---|---|
| committer | hazel <hazel@hazelthats.me> | 2026-03-06 17:56:45 +0100 |
| commit | fcbb4790e92302696175cfa89608cbb985383d15 (patch) | |
| tree | 7c96ec251573de0a5b7cfc129d98559911d04caf /public/global.css | |
| download | hazelthats.me-fcbb4790e92302696175cfa89608cbb985383d15.tar.gz hazelthats.me-fcbb4790e92302696175cfa89608cbb985383d15.tar.bz2 hazelthats.me-fcbb4790e92302696175cfa89608cbb985383d15.zip | |
history reset for anonymity
Signed-off-by: hazel <hazel@hazelthats.me>
Diffstat (limited to 'public/global.css')
| -rw-r--r-- | public/global.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/public/global.css b/public/global.css new file mode 100644 index 0000000..eb95539 --- /dev/null +++ b/public/global.css @@ -0,0 +1,70 @@ +:root { + --base: #000000; + --overlay-1: #7c7c7c; + --text: #ffffff; + --accent: #ff7777; +} + +body { + margin: 0; + background-color: var(--base); + color: var(--text); + font-family: monospace; + font-size: 16px; +} + +main { + margin-inline: auto; + max-width: 1000px; + padding: 1rem; +} + +header, +main, +footer { + padding: 1rem; +} + +h1 { + font-size: 4rem; + font-weight: bold; + margin-bottom: 1rem; +} + +header, +footer { + text-align: center; + margin: 1rem 0; +} + +a { + color: var(--accent); + text-decoration: none; +} + +footer div.badges { + margin: 1rem auto; + max-width: 1000px; +} + +footer div.badges > a, +footer div.badges > img { + display: inline-block; + margin-inline: 5px; + text-decoration: none; +} + +footer div.badges img { + width: 88px; + height: 31px; +} + +footer div.git-hash { + color: var(--overlay-1); + margin: 0.5em; + font-size: 0.8em; +} + +hr { + border-color: var(--overlay-1); +} |
