39 lines
684 B
CSS
39 lines
684 B
CSS
@import url('https://fonts.googleapis.com/css?family=PT%20Mono:700|PT%20Mono:400');
|
|
|
|
.post img {
|
|
width: 50%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: block;
|
|
}
|
|
|
|
.header {
|
|
font-family: 'PT Mono';
|
|
background-size: cover;
|
|
text-align: center;
|
|
color: white;
|
|
padding: 2em;
|
|
}
|
|
|
|
.sidebar {
|
|
margin: 1em 0;
|
|
padding: 0.5em;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
.post h1 {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
font-weight: 100;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.post h2 {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
font-weight: 300;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.post-date {
|
|
float: right;
|
|
}
|