diff options
| author | azureazure <azureazure@disroot.org> | 2025-12-27 16:10:07 +0100 |
|---|---|---|
| committer | azureazure <azureazure@disroot.org> | 2025-12-27 16:10:07 +0100 |
| commit | c2ccfcef07209a9fa6e049a5574471d62e34d33a (patch) | |
| tree | 4c0c12005a49c8e282c2136bb7a80c64cf1c4dff /src/assets/stylesheet.css | |
| parent | be88a44de9506cc1d8d89bc4f1d6297fffa23ba8 (diff) | |
| download | slimegirl.nexus-c2ccfcef07209a9fa6e049a5574471d62e34d33a.tar.gz | |
better mobile view
Diffstat (limited to 'src/assets/stylesheet.css')
| -rw-r--r-- | src/assets/stylesheet.css | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/src/assets/stylesheet.css b/src/assets/stylesheet.css index 4d57d75..7eed892 100644 --- a/src/assets/stylesheet.css +++ b/src/assets/stylesheet.css @@ -41,7 +41,7 @@ /* i don't want to display the date but it needs to exist for rss generation */ #postamble { - visibility: hidden; + display: none; } body @@ -56,7 +56,7 @@ body h1 { - font-size: 60px; + font-size: 40px; text-align: center; font-family: ibm-xga, monospace; } @@ -67,6 +67,12 @@ h2 font-family: ibm-xga, monospace; } +/* also a h2 */ +.footnotes +{ + font-size: 20px; +} + .logo { text-align: center; @@ -78,11 +84,32 @@ h2 font-size: 20px; } +.big-logo +{ + display: none; +} + +@media screen and (min-width: 850px) +{ + .big-logo + { + display: inherit; + } + .small-logo + { + display: none; + } +} + .buttons { display: grid; place-items: center; } +.buttons > p +{ + margin: 0; +} .logo:hover { @@ -118,7 +145,8 @@ ul ul li::before { - content: "\00a7 "; + font-family: ibm-xga, monospace; + content: "* "; } hr |
