46 lines
804 B
CSS
46 lines
804 B
CSS
:root {
|
|
--background-color: #15202B;
|
|
--text-color: #D4D4D4;
|
|
--link-color: lightskyblue;
|
|
--sans-font: "Helvetica", "Arial", "Liberation Sans", sans-serif;
|
|
}
|
|
|
|
body {
|
|
max-width: 850px;
|
|
margin: auto;
|
|
min-height: 100%;
|
|
padding-bottom: 20px;
|
|
font-family: var(--sans-font);
|
|
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
header {
|
|
margin: auto 12px;
|
|
}
|
|
|
|
header #header {
|
|
border-bottom: 2px solid var(--link-color);
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
header #header #title {
|
|
font-size: 2em;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
header #header #title:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|