42 lines
585 B
CSS
42 lines
585 B
CSS
html {
|
|
display: grid;
|
|
place-items: center;
|
|
background-color: #282828;
|
|
}
|
|
|
|
body {
|
|
margin: 2em 0 0 0;
|
|
font-family: 'Segoe UI Variable', sans-serif;
|
|
|
|
background-color: #202020;
|
|
color: #F1F1F1;
|
|
|
|
max-width: 80ch;
|
|
padding: 2em;
|
|
}
|
|
|
|
a, a:link {
|
|
color: #FF5A36;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ff8266;
|
|
}
|
|
|
|
.inlineheader {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 2rem;
|
|
gap: 1em;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.inlineheader h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
.inlineheader > div > span {
|
|
padding: 0.2rem;
|
|
color: white;
|
|
background-color: #f06445;
|
|
} |