32 lines
455 B
CSS
32 lines
455 B
CSS
body {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
background: #222;
|
|
color: #e1e1e1;
|
|
}
|
|
header a {
|
|
color: #777;
|
|
text-decoration: none;
|
|
}
|
|
header a:hover {
|
|
text-decoration: underline;
|
|
color: #e1e1e1;
|
|
}
|
|
header {
|
|
margin-bottom: 6vh;
|
|
}
|
|
.post {
|
|
width: 70vw;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
footer {
|
|
width: 70vw;
|
|
margin-top: 6vh;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
font-size: 1.3vh;
|
|
}
|
|
footer span a {
|
|
color: #FF8608;
|
|
}
|