1
0
Fork 0
web/css/style.css
2024-05-06 20:08:34 +02:00

55 lines
829 B
CSS

:root {
--bg-color: #000000;
--fg-color: #FFFFFF;
}
html {
display: flex;
width: 100vw;
background-color: var(--bg-color);
color: var(--fg-color);
font-size: 1em;
font-family: "Cascadia Code", monospace;
justify-content: center;
}
body {
width: 80ch;
height: 100vh;
margin: 0;
}
a, a:visited { color: var(--fg-color); }
header, footer {
display: flex;
justify-content: space-between;
font-weight: bold;
margin-bottom: 1lh;
}
.section { margin-bottom: 1lh; }
.content { padding-left: 8ch; }
.description { padding-left: 4ch; }
ul {
list-style-type: '';
padding-left: 0;
margin: 0;
}
li { margin-bottom: 1lh; }
.section-title {
font-weight: bold;
text-transform: uppercase;
}
#message {
position: fixed;
bottom: 0;
background: var(--fg-color);
color: var(--bg-color);
}