This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
website/style.css

66 lines
970 B
CSS

/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
}
body {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
width: 720px;
margin-left: auto;
margin-right: auto;
text-align: center;
/* Disable font boosting */
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
}
pre {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
}
h4 {
text-align: left;
}
p {
text-align: left;
line-height: 150%;
}
input {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
display: block;
margin: auto;
margin-top: 1em;
margin-bottom: 1em;
}
.emoji {
font-size: 3em;
}
.slogan {
text-align: center;
}
.icon {
height: 3em;
width: 3em;
float: left;
padding-right: 1em;
}
.info {
margin: auto;
text-align: left;
background: lightgreen;
color: black;
padding: 10px;
width: 360px;
}