Compare commits

..

No commits in common. "c85ab907978bbf8666e57a0467ec58fd1f1782e8" and "868b3039c588e829de6e3b6f659dd3817d2f6672" have entirely different histories.

View file

@ -1,17 +1,9 @@
:root {
--background: white;
--foreground: #111;
}
body {
background: white;
background: var(--background);
color: #111;
color: var(--foreground);
font-family: sans-serif;
max-width: 45rem;
margin: 0;
padding: 1rem;
margin-left: auto;
padding: 0.5rem;
}
header {
@ -40,8 +32,6 @@ pre {
blockquote {
border-left: solid 3px;
border-color: #111;
border-color: var(--foreground);
margin: auto 0.5em;
padding-left: 1em;
}
@ -57,8 +47,8 @@ li {
@media (prefers-color-scheme: dark) {
body {
--background: black;
--foreground: #eee;
background: black;
color: #eee;
}
abbr {
color: lightgray;
@ -69,4 +59,7 @@ li {
a:visited {
color: #ff9;
}
ul {
background: rgba(255, 0, 0, 0.2);
}
}