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

66 lines
721 B
CSS
Raw Normal View History

2021-10-08 23:36:43 +00:00
body {
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;
margin-left: auto;
padding: 0.5rem;
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: black solid 1px;
}
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;
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
2021-12-28 19:36:03 +00:00
ul {
padding: 0;
padding-left: 1.5rem;
}
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 {
background: black;
color: #eee;
}
abbr {
color: lightgray;
}
a {
color: gold;
}
a:visited {
color: #ff9;
}
2021-12-28 19:36:03 +00:00
ul {
background: rgba(255, 0, 0, 0.2);
}
2021-11-03 21:57:53 +00:00
}