This commit is contained in:
Zyllian 2022-10-03 07:49:33 +00:00
parent 2e164524b8
commit fc20cdbd04
5 changed files with 65 additions and 11 deletions

View file

@ -6,14 +6,14 @@ body {
height: 100vh;
--bg-color: #eee;
--text-color: black;
--accent-color: #0ad;
--accent-text-color: var(--text-color);
--accent-color: #b520e7;
--accent-text-color: var(--bg-color);
}
@media (prefers-color-scheme: dark) {
body {
--bg-color: #333;
--text-color: #aaa;
--accent-text-color: var(--bg-color);
--text-color: #ccc;
--accent-text-color: black;
}
}
@ -43,3 +43,7 @@ a:hover, a:focus {
main.page {
margin: 8px;
}
abbr {
cursor: help;
}