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

75 lines
1 KiB
CSS
Raw Normal View History

2022-05-25 21:56:56 +00:00
/* Dark mode */
2022-05-21 19:17:30 +00:00
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
a:link {
color: #3eab86;
}
a:visited {
color: #4bd1a3;
}
2022-05-21 19:17:30 +00:00
}
body {
2022-05-25 21:56:56 +00:00
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
width: 720px;
margin-left: auto;
margin-right: auto;
2021-10-31 16:56:22 +00:00
text-align: center;
2022-05-25 21:56:56 +00:00
/* Disable font boosting */
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
2021-07-01 03:47:02 +00:00
}
2022-05-25 21:56:56 +00:00
pre {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
}
h4 {
text-align: left;
}
2021-07-01 03:47:02 +00:00
p {
2021-10-31 16:56:22 +00:00
text-align: left;
2022-05-25 21:56:56 +00:00
line-height: 150%;
}
input {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
display: block;
2021-10-31 16:56:22 +00:00
margin: auto;
margin-top: 1em;
margin-bottom: 1em;
2021-07-01 03:47:02 +00:00
}
2021-10-31 17:14:23 +00:00
2022-05-25 21:56:56 +00:00
.emoji {
font-size: 3em;
2021-10-31 17:14:23 +00:00
}
2022-05-25 21:56:56 +00:00
.slogan {
text-align: center;
2022-06-25 18:07:02 +00:00
font-size: 1.125em;
2022-05-25 21:56:56 +00:00
}
.icon {
height: 3em;
width: 3em;
float: left;
padding-right: 1em;
}
.info {
margin: auto;
2022-05-25 21:56:56 +00:00
text-align: left;
background: lightgreen;
color: black;
padding: 10px;
width: 360px;
}