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

body {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
max-width: 720px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
h4 {
text-align: left;
}
p {
text-align: left;
line-height: 150%;
}
picture, img {
border-radius: 0.5em;
max-width: 100%;
}
.logo {
max-width: 360px;
width: 100%;
height: auto;
}
.emoji {
font-size: 3em;
}
.slogan {
text-align: center;
font-size: 1.125em;
}
.icon {
border-radius: unset;
height: 3em;
width: 3em;
float: left;
padding-right: 1em;
}
.info {
margin: auto;
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;
}
}