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

42 lines
427 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;
2021-10-09 01:12:14 +00:00
margin: 0 auto;
padding: 1rem;
2021-10-08 23:36:43 +00:00
}
2021-10-11 19:10:48 +00:00
img,
video {
2021-10-09 01:12:14 +00:00
max-width: 100%;
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;
}
2021-11-01 13:12:16 +00:00
blockquote {
2021-11-03 21:57:53 +00:00
border-left: solid 3px;
2021-11-01 13:12:16 +00:00
margin: auto .5em;
padding-left: 1em;
}
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;
}
}