blog/static/css/blog.css

41 lines
587 B
CSS
Raw Normal View History

2021-01-24 20:39:27 +01:00
main .content {
2021-01-24 23:24:49 +01:00
display: flex;
flex-direction: column;
text-align: justify;
line-height: 1.5em;
letter-spacing: .04em;
2021-01-24 20:39:27 +01:00
}
main .content code, .codehilite {
2021-01-24 23:24:49 +01:00
font-size: .85em;
2021-01-24 20:39:27 +01:00
}
2021-01-24 23:24:49 +01:00
.description h3 {
font-weight: normal;
opacity: 0.6;
margin: -.5em auto .5em auto;
2021-01-24 20:39:27 +01:00
}
.published-date {
2021-01-24 23:24:49 +01:00
font-size: 0.75em;
opacity: .75;
margin-bottom: 2em;
2021-01-24 20:39:27 +01:00
}
@media screen and (max-width: 1024px) {
2021-01-24 23:24:49 +01:00
main .container {
width: 100%;
}
2021-01-24 20:39:27 +01:00
}
@media screen and (min-width: 1024px) {
2021-01-24 23:24:49 +01:00
main .container {
max-width: 768px;
}
2021-01-24 20:39:27 +01:00
}
.codehilite {
2021-01-24 23:24:49 +01:00
padding: 0 .5em;
overflow: auto;
2021-01-24 20:39:27 +01:00
}