This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/drip.css

75 lines
898 B
CSS
Raw Permalink Normal View History

2022-03-10 12:42:25 +00:00
:root {
--background: white;
--foreground: #111;
}
2021-10-08 23:36:43 +00:00
body {
2022-03-10 12:42:25 +00:00
background: white;
background: var(--background);
color: #111;
color: var(--foreground);
2021-10-09 01:12:14 +00:00
font-family: sans-serif;
2021-10-11 19:10:35 +00:00
max-width: 45rem;
margin: 0;
padding: 1rem;
2021-10-08 23:36:43 +00:00
}
2022-03-06 04:20:17 +00:00
header {
margin: 2rem 0;
text-align: center;
}
h2 {
border-bottom: var(--foreground) solid 1px;
2022-03-06 04:20:17 +00:00
}
2021-10-11 19:10:48 +00:00
img,
video {
2021-10-09 01:12:14 +00:00
max-width: 100%;
2022-03-06 03:54:39 +00:00
border-radius: 12px;
2021-10-08 23:36:43 +00:00
}
abbr {
2021-10-09 01:12:14 +00:00
color: gray;
2021-10-08 23:36:43 +00:00
}
pre {
overflow-x: auto;
2022-01-20 15:48:00 +00:00
white-space: break-spaces;
}
2021-11-01 13:12:16 +00:00
blockquote {
2021-11-03 21:57:53 +00:00
border-left: solid 3px;
2022-03-10 12:42:25 +00:00
border-color: #111;
border-color: var(--foreground);
2021-12-28 19:36:03 +00:00
margin: auto 0.5em;
2021-11-01 13:12:16 +00:00
padding-left: 1em;
}
2021-11-03 21:57:53 +00:00
ul,
ol {
padding: 0;
padding-left: 1.5rem;
2022-07-07 22:13:38 +00:00
margin: 1rem 0;
}
li {
2021-12-28 19:36:03 +00:00
margin: 0.5rem 0;
padding: 0 0.2rem;
2021-12-28 19:36:03 +00:00
}
2021-11-03 21:57:53 +00:00
@media (prefers-color-scheme: dark) {
body {
2022-03-10 12:42:25 +00:00
--background: black;
--foreground: #eee;
2021-11-03 21:57:53 +00:00
}
abbr {
color: lightgray;
}
a {
color: gold;
}
a:visited {
color: #ff9;
}
}