Compare commits

..

6 commits

Author SHA1 Message Date
8215a211e9
[wip] new rgb guide
All checks were successful
/ build (pull_request) Successful in 27s
2025-12-15 17:11:36 +01:00
44567a39e2
add hover effect to <a>
This adds something like a color inversion when hovering <a> tags
which gives the user feedback and looks cool
2025-12-15 17:10:42 +01:00
d1749ce93a
increase default line-height to 1.4 for all text
In my opinion, this makes text-heavy sites like ours far easier to read.
2025-12-15 17:09:59 +01:00
2c63e03fff
make header img of rbg-ears.html point back to landing page 2025-12-15 17:09:04 +01:00
d441ba91c3
restructure landing page to make specific sub-sites easier to discover 2025-12-15 17:08:16 +01:00
0c8b0737c1
split css style into layers for explicit per-site styling 2025-12-15 17:08:13 +01:00

View file

@ -48,6 +48,12 @@
a:link, a:visited {
color: var(--accent-color);
padding-inline: 0.1ch;
&:hover:not(:has(img)) {
background-color: var(--accent-color);
color: white;
text-decoration: none;
}
}
u {