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

71 lines
910 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
}
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%;
}
picture, img {
border-radius: 0.5em;
max-width: 100%;
}
.logo {
max-width: 360px;
width: 100%;
height: auto;
}
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 {
border-radius: unset;
2022-05-25 21:56:56 +00:00
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;
border-radius: 0.5em;
padding: 1em;
width: 50%;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
a:link {
color: skyblue;
}
a:visited {
color: pink;
}
.info {
background: darkslategray;
}
}