exozyme/style.css

61 lines
705 B
CSS
Raw Normal View History

body {
2022-05-25 21:56:56 +00:00
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
width: min(720px, 90%);
2022-05-25 21:56:56 +00:00
margin-left: auto;
margin-right: auto;
2021-07-01 03:47:02 +00:00
}
h1 {
2024-01-20 17:51:50 +00:00
text-align: center;
font-size: 4em;
}
2024-01-20 17:51:50 +00:00
h2 {
text-align: center;
}
2021-07-01 03:47:02 +00:00
p {
line-height: 1.75;
2022-05-25 21:56:56 +00:00
}
table {
border-spacing: 0 1em;
}
picture, img {
2024-01-20 17:51:50 +00:00
display: block;
margin: auto;
border-radius: 0.5em;
max-width: 100%;
}
2022-05-25 21:56:56 +00:00
.emoji {
text-align: center;
2024-01-20 17:51:50 +00:00
font-size: 3em;
2021-10-31 17:14:23 +00:00
}
.links {
2022-05-25 21:56:56 +00:00
text-align: center;
2024-01-20 17:51:50 +00:00
font-size: 1.5em;
}
.logo {
2024-01-20 17:51:50 +00:00
width: 35%;
2022-05-25 21:56:56 +00:00
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
a:link {
color: skyblue;
}
a:visited {
color: pink;
}
}