erynwells.me/assets/styles/root.css

31 lines
589 B
CSS
Raw Normal View History

2023-09-24 09:21:49 -07:00
@layer reset, typography, root, layout, section, page, utility;
:root {
2023-09-24 09:21:49 -07:00
--transition-duration: 0.7s;
--menu-icon-size: 20px;
}
@media (prefers-color-scheme: dark) {
2023-09-24 09:21:49 -07:00
:root {
--twitter-icon: url(/icons/twitter-dark.svg);
--github-icon: url(/icons/github-dark.svg);
--instagram-icon: url(/icons/instagram-dark.svg);
--feed-icon: url(/icons/rss-dark.svg);
}
}
@layer root {
2023-09-24 09:21:49 -07:00
nav.bulleted>li:first-child::before {
content: "";
}
nav.bulleted>li::before {
content: "•";
opacity: 80%;
}
header > span.series::before {
2023-09-24 09:21:49 -07:00
content: "↳";
}
}