exozyme/style.css

60 lines
727 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;
max-width: 720px;
2022-05-25 21:56:56 +00:00
margin-left: auto;
margin-right: auto;
2021-10-31 16:56:22 +00:00
text-align: center;
2021-07-01 03:47:02 +00:00
}
h3 {
text-align: left;
}
2021-07-01 03:47:02 +00:00
p {
2021-10-31 16:56:22 +00:00
text-align: left;
line-height: 1.75;
2022-05-25 21:56:56 +00:00
}
picture, img {
border-radius: 0.5em;
max-width: 100%;
}
2022-05-25 21:56:56 +00:00
.emoji {
text-align: center;
2022-05-25 21:56:56 +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;
font-size: 1.25em;
}
.logo {
max-width: 50%;
2022-05-25 21:56:56 +00:00
}
.icon {
border-radius: unset;
2022-05-25 21:56:56 +00:00
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;
}
}