34 lines
352 B
CSS
34 lines
352 B
CSS
|
body {
|
||
|
padding: 2rem;
|
||
|
max-width: 70ch;
|
||
|
font-family: 'Source Code Pro', monospace;
|
||
|
font-size: 18px;
|
||
|
line-height: 1.3;
|
||
|
}
|
||
|
|
||
|
ul#posts li {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
margin: .5rem 0;
|
||
|
}
|
||
|
|
||
|
ul#posts {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
span.meta {
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
margin: 2rem 0;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
margin-top: 2rem;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
text-align: justify;
|
||
|
}
|