2019-07-31 18:43:51 +02:00
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* FONTS *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 18:05:41 +02:00
|
|
|
|
code, .footnotes, .footnote-ref, figure p {
|
2019-08-15 21:39:21 +02:00
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-31 18:43:51 +02:00
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* LAYOUT *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.container {
|
2019-07-05 16:50:21 +02:00
|
|
|
|
max-width: 35rem; /* 960px */
|
2019-07-31 18:43:51 +02:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* HEADER *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.main-header {
|
|
|
|
|
margin-bottom: 2em;
|
2019-07-05 16:50:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-31 18:43:51 +02:00
|
|
|
|
.main-header section {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: solid .1em #e1e1e1;
|
|
|
|
|
padding-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-header header {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 5rem;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav {
|
|
|
|
|
margin-right: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* FOOTER *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.main-footer ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
border-top: solid .1em #e1e1e1;
|
|
|
|
|
padding-top: 1em;
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-footer li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-right: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.smallcaps {
|
|
|
|
|
font-variant: small-caps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* MAIN *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
2019-07-05 16:50:21 +02:00
|
|
|
|
dl {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
width: 100%; /* set the container width*/
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dt {
|
2019-07-31 18:43:51 +02:00
|
|
|
|
flex: 0 0 39%;
|
|
|
|
|
word-wrap: anywhere;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dt::after {
|
|
|
|
|
content: " :";
|
2019-07-05 16:50:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd {
|
2019-07-31 18:43:51 +02:00
|
|
|
|
flex:0 0 59%;
|
2019-07-05 16:50:21 +02:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
text-align: left;
|
2019-07-31 18:43:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contents {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contents li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* POST *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.post-header {
|
|
|
|
|
margin: 1em 0 1em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-header h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-info {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-info li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding-right: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-info li > ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 0;
|
2019-07-05 16:50:21 +02:00
|
|
|
|
}
|
2019-08-28 18:05:41 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ************** *
|
|
|
|
|
* DIVERS *
|
|
|
|
|
* ************** *
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
code, pre {
|
|
|
|
|
background-color: lightgrey;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
padding: .2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-width: 95vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure {
|
|
|
|
|
background-color: lightgrey;
|
|
|
|
|
padding: .4rem;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
margin-right: .4rem;
|
|
|
|
|
margin-left: .4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: .2rem 0;
|
|
|
|
|
}
|