Files
enstrayedapi/frontpage/static/index.css
Enstrayed c900828ef7 what
2024-12-24 19:52:27 -08:00

65 lines
835 B
CSS

body {
margin: 0;
font-family: Consolas, monospace;
color: white;
background-color: black;
display: grid;
place-items: center;
row-gap: 5em;
padding: 6em 2em;
}
.flexcolumn {
display: flex;
flex-direction: column;
min-width: 20em;
gap: 2em;
}
.flexrow {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 2em;
}
.gap1em {
gap: 1em;
}
h1, h2, h3, h4 {
margin: 0;
margin-bottom: 0.5em;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
ul > li {
padding-bottom: 0.5em;
}
a, a:link {
color: #FF5A36;
}
a:hover {
color: #ff7f50;
}
@media (prefers-color-scheme: light) { /* Light Mode Support */
body {
background-color: white;
color: black;
}
a, a:link {
color: #B32100;
}
}