diff options
| author | azureazure <azureazure@disroot.org> | 2025-12-20 19:20:43 +0100 |
|---|---|---|
| committer | azureazure <azureazure@disroot.org> | 2025-12-20 19:20:43 +0100 |
| commit | 9ec83ec1f9a85aa5e631a9a2a053e5cdb8331d60 (patch) | |
| tree | 08bca11a64711fa28444d070266916bfbbdbd27d /src/assets/stylesheet.css | |
| parent | 550272c4a9778ca8f40c790d6c50acda62f6ed8f (diff) | |
| download | slimegirl.nexus-9ec83ec1f9a85aa5e631a9a2a053e5cdb8331d60.tar.gz | |
moar css + buttons
Diffstat (limited to 'src/assets/stylesheet.css')
| -rw-r--r-- | src/assets/stylesheet.css | 40 |
1 files changed, 36 insertions, 4 deletions
diff --git a/src/assets/stylesheet.css b/src/assets/stylesheet.css index 079ce11..96910b7 100644 --- a/src/assets/stylesheet.css +++ b/src/assets/stylesheet.css @@ -1,3 +1,11 @@ +:root +{ + --bg: #101010; + --text: white; + --main: limegreen; + --accent: lime; +} + .footpara { display: inline; @@ -7,18 +15,19 @@ { max-width: 60em; margin: auto; + font-family: serif; } body { - background-color: #101010; - color: white; + background-color: var(--bg); + color: var(--text); } .logo { text-align: center; - color: limegreen; + color: var(--main); user-select: none; margin: 0; padding: 0; @@ -27,7 +36,24 @@ body .logo:hover { - color: lime; + color: var(--accent); +} + +a +{ + color: var(--main); + text-decoration: none; + border: 1px solid transparent; +} + +a:hover +{ + color: var(--bg); + background-color: var(--main); +} +a:has(> img):hover +{ + background-color: transparent; } nav @@ -41,3 +67,9 @@ ul li { list-style-type: none; } + +hr +{ + border-color: var(--main); + border-style: dashed; +} |
