exozyme/style.css

61 lines
716 B
CSS

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