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

128 lines
1.7 KiB
CSS
Raw Normal View History

2022-03-10 12:42:25 +00:00
:root {
2022-12-20 16:12:41 +00:00
--background: white;
2022-12-20 19:16:02 +00:00
--backgroundish: #f0f0f0;
2022-12-20 16:12:41 +00:00
--foreground: #111;
2022-03-10 12:42:25 +00:00
}
2021-10-08 23:36:43 +00:00
body {
2022-12-20 16:12:41 +00:00
background: white;
background: var(--background);
color: #111;
color: var(--foreground);
font-family: sans-serif;
max-width: 45rem;
margin: 0;
padding: 1rem;
2021-10-08 23:36:43 +00:00
}
article header {
2022-12-20 16:12:41 +00:00
margin: 2rem 0;
text-align: center;
2022-03-06 04:20:17 +00:00
}
article h1 {
font-size: 32px;
}
2022-03-06 04:20:17 +00:00
h2 {
2022-12-20 16:12:41 +00:00
border-bottom: var(--foreground) solid 1px;
2022-03-06 04:20:17 +00:00
}
2021-10-11 19:10:48 +00:00
img,
video {
2022-12-20 16:12:41 +00:00
max-width: 100%;
border-radius: 12px;
2021-10-08 23:36:43 +00:00
}
abbr {
2022-12-20 16:12:41 +00:00
color: gray;
2021-10-08 23:36:43 +00:00
}
pre {
2022-12-20 16:12:41 +00:00
overflow-x: auto;
white-space: break-spaces;
}
2021-11-01 13:12:16 +00:00
blockquote {
2022-12-20 16:12:41 +00:00
border-left: solid 3px;
border-color: #111;
border-color: var(--foreground);
margin: auto 0.5em;
padding-left: 1em;
2021-11-01 13:12:16 +00:00
}
2021-11-03 21:57:53 +00:00
ul,
ol {
2022-12-20 16:12:41 +00:00
padding: 0;
padding-left: 1.5rem;
margin: 1rem 0;
}
li {
2022-12-20 16:12:41 +00:00
margin: 0.5rem 0;
padding: 0 0.2rem;
2021-12-28 19:36:03 +00:00
}
2022-10-28 23:16:12 +00:00
a {
2022-12-20 16:12:41 +00:00
background: #e7e7e7;
padding: 0em 0.35em;
border-radius: 0.4rem;
color: inherit;
text-decoration: inherit;
2022-10-28 23:16:12 +00:00
}
2021-11-03 21:57:53 +00:00
@media (prefers-color-scheme: dark) {
2022-12-20 16:12:41 +00:00
body {
--background: black;
2022-12-20 19:16:02 +00:00
--backgroundish: #111;
2022-12-20 16:12:41 +00:00
--foreground: #eee;
}
abbr {
color: lightgray;
}
a {
background: #221f2d;
}
2021-11-03 21:57:53 +00:00
}
#conexiones ul {
2022-12-20 16:12:41 +00:00
list-style: none;
padding: 0;
margin: 0;
}
#conexiones li {
2022-12-20 16:12:41 +00:00
padding: 0;
margin: 0;
}
#conexiones li::before {
2022-12-20 16:12:41 +00:00
content: "↜ ";
}
2022-12-20 19:16:02 +00:00
.webring .articles {
display: flex;
flex-wrap: wrap;
}
.webring .title {
margin: 0;
}
.webring .article {
flex: 1 1 0;
display: flex;
flex-direction: column;
margin: 0.5rem;
padding: 0.5rem;
background: var(--backgroundish);
min-width: 10rem;
}
.webring .summary {
font-size: 0.8rem;
flex: 1 1 0;
}
.webring .attribution {
text-align: right;
font-size: 0.8rem;
}
2023-01-20 01:36:28 +00:00
.main-title {
2023-01-20 01:41:16 +00:00
color: red;
2023-01-20 01:36:28 +00:00
margin-top: 0;
}