exozyme/style.css
Anthony Wang e131dc1110
2024 major cleanup
- Remove FUQs page and move some of the questions to the about or quickstart pages
- Remove info boxes
- Use avif instead of webp images everywhere and keep png/jpg fallbacks
- Add pubkey.asc
- Add id things to all h2
- Convert all h4 headings to h3
- Simplify/fix wording in a lot of places
2024-01-05 00:47:16 +00:00

60 lines
727 B
CSS

body {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
max-width: 720px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
h3 {
text-align: left;
}
p {
text-align: left;
line-height: 1.75;
}
picture, img {
border-radius: 0.5em;
max-width: 100%;
}
.emoji {
text-align: center;
font-size: 3em;
}
.links {
text-align: center;
font-size: 1.25em;
}
.logo {
max-width: 50%;
}
.icon {
border-radius: unset;
height: 3em;
width: 3em;
float: left;
padding-right: 1em;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
a:link {
color: skyblue;
}
a:visited {
color: pink;
}
}