Compare commits
2 commits
868b3039c5
...
c85ab90797
Author | SHA1 | Date | |
---|---|---|---|
c85ab90797 | |||
44b896ce70 |
1 changed files with 14 additions and 7 deletions
21
drip.css
21
drip.css
|
@ -1,9 +1,17 @@
|
|||
: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;
|
||||
margin-left: auto;
|
||||
padding: 0.5rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
header {
|
||||
|
@ -32,6 +40,8 @@ pre {
|
|||
|
||||
blockquote {
|
||||
border-left: solid 3px;
|
||||
border-color: #111;
|
||||
border-color: var(--foreground);
|
||||
margin: auto 0.5em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
@ -47,8 +57,8 @@ li {
|
|||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
background: black;
|
||||
color: #eee;
|
||||
--background: black;
|
||||
--foreground: #eee;
|
||||
}
|
||||
abbr {
|
||||
color: lightgray;
|
||||
|
@ -59,7 +69,4 @@ li {
|
|||
a:visited {
|
||||
color: #ff9;
|
||||
}
|
||||
ul {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue