2020-04-03 06:30:14 +00:00
|
|
|
body {
|
2020-04-05 10:33:21 +00:00
|
|
|
font-family: "Liberation Sans", "Nimbus Sans", "Arial", "Helvetica", sans-serif;
|
|
|
|
margin: 0;
|
2020-04-03 06:30:14 +00:00
|
|
|
}
|
2020-04-05 08:41:13 +00:00
|
|
|
|
2020-04-03 05:37:20 +00:00
|
|
|
h1 {
|
|
|
|
font-family: "Playfair Display";
|
2020-04-03 06:30:14 +00:00
|
|
|
text-align: center;
|
2020-04-05 06:34:03 +00:00
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
font-family: sans-serif;
|
2020-04-05 10:33:21 +00:00
|
|
|
background: #fafafa;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
#header-container {
|
|
|
|
width: 90%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
header h1 {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 1.2em;
|
2020-04-03 06:30:14 +00:00
|
|
|
}
|
2020-04-05 08:41:13 +00:00
|
|
|
nav {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#header-logo {
|
|
|
|
height: 32px;
|
2020-04-05 10:33:21 +00:00
|
|
|
width: 32px;
|
2020-04-05 08:41:13 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2020-04-03 06:30:14 +00:00
|
|
|
|
2020-04-05 10:33:21 +00:00
|
|
|
main {
|
|
|
|
width: 90%;
|
|
|
|
margin: 0 auto;
|
2020-04-03 06:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* post listings */
|
|
|
|
.post {
|
|
|
|
padding: 5px;
|
|
|
|
margin: 10px 0;
|
|
|
|
border-bottom: thin #aaa solid;
|
|
|
|
}
|
|
|
|
|
2020-04-05 10:33:21 +00:00
|
|
|
a {
|
2020-04-03 06:30:14 +00:00
|
|
|
color: #222;
|
2020-04-05 10:33:21 +00:00
|
|
|
text-decoration-style: dotted;
|
|
|
|
}
|
|
|
|
h1 a,
|
|
|
|
h2 a {
|
2020-04-03 06:30:14 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post h2 {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-excerpt h2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* post view */
|
2020-04-05 10:33:21 +00:00
|
|
|
|
|
|
|
#post-title {
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post-content h2 {
|
|
|
|
background: linear-gradient(to right, #9fc 0px 5px, transparent 5px 100%);
|
|
|
|
padding-left: 7px;
|
|
|
|
margin-left: -7px;
|
|
|
|
}
|
|
|
|
|
2020-04-03 06:30:14 +00:00
|
|
|
#post-content #post-info {
|
|
|
|
text-align: center;
|
|
|
|
display: block;
|
2020-04-05 10:33:21 +00:00
|
|
|
color: #333;
|
2020-04-03 06:30:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 10:33:21 +00:00
|
|
|
/* the content of the posts */
|
|
|
|
#post-body {
|
2020-04-05 06:34:03 +00:00
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
|
|
|
|
2020-04-05 10:33:21 +00:00
|
|
|
#post-body img {
|
|
|
|
margin: 5px auto;
|
|
|
|
max-width: 800px;
|
|
|
|
display: block;
|
|
|
|
box-shadow: 0 0 10px grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post-body figure.video {
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: min-content;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
#post-body figure.video video {
|
|
|
|
max-width: max-content;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
#post-body figure.video figcaption {
|
|
|
|
font-style: italic;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post-body aside {
|
|
|
|
background: #404248;
|
|
|
|
color: white;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 5px 0;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post-body blockquote {
|
|
|
|
border-top: thin black solid;
|
|
|
|
border-bottom: thin black solid;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#post-body blockquote::before {
|
|
|
|
content: "Quote";
|
|
|
|
color: #666;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#post-body blockquote p:first-of-type {
|
|
|
|
font-size: 1.3em;
|
|
|
|
text-align: center;
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post-body iframe.mastodon-embed {
|
2020-04-03 06:30:14 +00:00
|
|
|
margin: 0 auto;
|
2020-04-05 10:33:21 +00:00
|
|
|
display: block;
|
|
|
|
border: none;
|
2020-04-05 09:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* material icons */
|
|
|
|
.material-icons {
|
|
|
|
font-family: 'Material Icons';
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 24px; /* Preferred icon size */
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
|
|
|
text-transform: none;
|
|
|
|
letter-spacing: normal;
|
|
|
|
word-wrap: normal;
|
|
|
|
white-space: nowrap;
|
|
|
|
direction: ltr;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
|
|
|
/* Support for IE. */
|
|
|
|
font-feature-settings: 'liga';
|
|
|
|
|
|
|
|
/* my own changes */
|
|
|
|
vertical-align: bottom;
|
2020-04-03 05:37:20 +00:00
|
|
|
}
|