2020-02-12 03:21:15 +00:00
|
|
|
body {
|
|
|
|
max-width: 850px;
|
|
|
|
margin: auto;
|
|
|
|
min-height: 100%;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
font-family: $sansfont;
|
|
|
|
|
|
|
|
background-color: $background-color;
|
|
|
|
color: $text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
margin: auto 12px;
|
|
|
|
|
|
|
|
#header {
|
|
|
|
border-bottom: 2px solid $link-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
|
|
#title {
|
|
|
|
font-size: 2em;
|
|
|
|
color: $text-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-12 03:51:19 +00:00
|
|
|
small {
|
|
|
|
color: $small-text-color;
|
|
|
|
}
|
|
|
|
|
2020-02-12 03:21:15 +00:00
|
|
|
a {
|
|
|
|
color: $link-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.permalink {
|
2020-02-12 07:42:03 +00:00
|
|
|
color: $link-color;
|
2020-02-12 03:21:15 +00:00
|
|
|
font-size: 0.65em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 01:04:27 +00:00
|
|
|
blockquote {
|
|
|
|
color: $small-text-color;
|
|
|
|
border-left: 4px solid $small-text-color;
|
|
|
|
padding-left: 12px;
|
|
|
|
}
|
|
|
|
|
2020-02-12 03:51:19 +00:00
|
|
|
.postlisting-row td {
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
2020-02-12 03:21:15 +00:00
|
|
|
#content {
|
|
|
|
line-height: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
padding: 5px;
|
|
|
|
overflow-x: auto;
|
|
|
|
font-family: $monofont;
|
|
|
|
}
|