2018-03-06 14:02:44 +00:00
|
|
|
---
|
|
|
|
---
|
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
@import "{{ site.theme }}";
|
2018-03-06 14:02:44 +00:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
div.linkmenu {
|
|
|
|
float: right;
|
2021-06-06 12:14:51 +01:00
|
|
|
}
|
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
div.titleflex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2018-10-16 16:00:15 +01:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
> span.logo {
|
|
|
|
max-width: 12em;
|
|
|
|
}
|
2018-10-29 00:11:42 +00:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
> span.links {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2018-10-29 00:11:42 +00:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
> a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.75em;
|
2019-08-06 13:18:40 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-06 14:02:44 +00:00
|
|
|
}
|
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
div.titleflex {
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
> span.logo {
|
|
|
|
flex-basis: 100%;
|
2019-08-05 19:03:40 +02:00
|
|
|
}
|
2021-06-06 14:08:29 +01:00
|
|
|
|
|
|
|
> span.links {
|
|
|
|
margin-top: 1em;
|
|
|
|
flex-basis: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
padding: 0.35em;
|
2019-08-05 19:03:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-06 14:02:44 +00:00
|
|
|
}
|
2018-10-11 10:23:19 +01:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
.markdown-body {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2018-05-09 00:24:30 +01:00
|
|
|
}
|
2018-07-13 12:50:27 +01:00
|
|
|
|
|
|
|
div.blogpost {
|
2021-06-06 14:08:29 +01:00
|
|
|
display: grid;
|
|
|
|
grid-gap: 10px;
|
|
|
|
grid-template-columns: 100px minmax(200px, 1fr);
|
2018-07-13 13:11:43 +01:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
margin-bottom: 1em;
|
2018-07-13 12:50:27 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 12:58:22 +01:00
|
|
|
div.blogpost div#date div#day {
|
2021-06-06 14:08:29 +01:00
|
|
|
font-size: 2.25em;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0.1em;
|
2018-07-13 12:50:27 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 12:58:22 +01:00
|
|
|
div.blogpost div#date div#month {
|
2021-06-06 14:08:29 +01:00
|
|
|
font-size: 0.6em;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
2018-07-13 13:09:43 +01:00
|
|
|
|
2021-06-06 14:08:29 +01:00
|
|
|
position: relative;
|
|
|
|
top: -1em;
|
2018-07-13 13:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.blogpost div#overview div#title {
|
2021-06-06 14:08:29 +01:00
|
|
|
margin-top: 0.75em;
|
2018-07-13 12:50:27 +01:00
|
|
|
}
|
2018-07-13 12:52:44 +01:00
|
|
|
|
2018-07-13 12:58:22 +01:00
|
|
|
div.blogpost div#overview div#excerpt {
|
2021-06-06 14:08:29 +01:00
|
|
|
padding-top: 0.2em;
|
|
|
|
color: #444444;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1em;
|
2020-02-19 13:24:55 -05:00
|
|
|
}
|