exozyme/style.css

62 lines
720 B
CSS

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