2020-11-23 23:47:27 +00:00
|
|
|
:root {
|
|
|
|
--dim-text: #454545;
|
|
|
|
--shaded-bg: #e3e3e3;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
html {
|
2020-11-24 02:19:18 +00:00
|
|
|
background: white;
|
|
|
|
color: black;
|
2020-11-23 23:47:27 +00:00
|
|
|
line-height: 1.5rem;
|
|
|
|
font-family: sans-serif;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-11-23 23:47:27 +00:00
|
|
|
max-width: 1000px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner {
|
2020-11-23 23:47:27 +00:00
|
|
|
margin: 2rem 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner a {
|
2020-11-23 23:47:27 +00:00
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner a:hover {
|
2020-11-23 23:47:27 +00:00
|
|
|
text-decoration: underline;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner h2 {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: inline;
|
|
|
|
font-size: 1.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner nav {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0 1rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner nav ul {
|
2020-11-23 23:47:27 +00:00
|
|
|
list-style-type: none;
|
|
|
|
font-size: 1.25rem;
|
|
|
|
text-transform: lowercase;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner nav ul li {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: inline;
|
|
|
|
margin: 0 0.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header#banner nav ul li a {
|
2020-11-23 23:47:27 +00:00
|
|
|
color: var(--dim-text);
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 21:55:19 +00:00
|
|
|
main#content a, footer a {
|
2020-11-23 23:47:27 +00:00
|
|
|
color: #007dfa;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content h1,
|
|
|
|
main#content h2,
|
|
|
|
main#content h3,
|
|
|
|
main#content h4,
|
|
|
|
main#content h5,
|
|
|
|
main#content h6 {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: block;
|
|
|
|
margin: 1.5rem 0 1rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* index.html styles */
|
|
|
|
main#content ul#posts {
|
2020-11-23 23:47:27 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts li {
|
2020-11-23 23:47:27 +00:00
|
|
|
line-height: 2rem;
|
|
|
|
padding: 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts small {
|
2020-11-23 23:47:27 +00:00
|
|
|
color: var(--dim-text);
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts li a {
|
2020-11-23 23:47:27 +00:00
|
|
|
text-decoration: none;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts li a:hover {
|
2020-11-23 23:47:27 +00:00
|
|
|
text-decoration: underline;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* single.html styles */
|
2020-11-23 23:47:27 +00:00
|
|
|
main#content h1 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 2.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2020-11-23 23:47:27 +00:00
|
|
|
main#content h2 {
|
|
|
|
font-size: 1.25rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2020-11-23 23:47:27 +00:00
|
|
|
main#content h3 {
|
|
|
|
font-size: 1.125rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-23 23:47:27 +00:00
|
|
|
main#content #toc {
|
|
|
|
margin: 1rem 0;
|
|
|
|
padding: 0.5rem 1rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content #toc nav#TableOfContents {
|
2020-11-23 23:47:27 +00:00
|
|
|
margin-top: 0.25rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content #toc ul {
|
2020-11-23 23:47:27 +00:00
|
|
|
list-style-type: none;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content #toc ol {
|
2020-11-23 23:47:27 +00:00
|
|
|
counter-reset: item;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content #toc ol li {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: block;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content img {
|
2020-11-23 23:47:27 +00:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 0 auto;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content figure {
|
2020-11-23 23:47:27 +00:00
|
|
|
margin: 16px 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content figure img {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 0 auto;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content figure figcaption {
|
2020-11-23 23:47:27 +00:00
|
|
|
font-size: 0.92em;
|
|
|
|
font-style: italic;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0 1rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content figure figcaption h4 {
|
2020-11-23 23:47:27 +00:00
|
|
|
font-style: normal;
|
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content figure figcaption p {
|
2020-11-23 23:47:27 +00:00
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 0.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content code {
|
2020-11-23 23:47:27 +00:00
|
|
|
font-size: 16px;
|
|
|
|
background-color: var(--shaded-bg);
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main#content pre {
|
2020-11-23 23:47:27 +00:00
|
|
|
overflow-y: visible;
|
|
|
|
overflow-x: scroll;
|
|
|
|
background-color: var(--shaded-bg);
|
|
|
|
padding: 0.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-23 23:47:27 +00:00
|
|
|
main#content code {
|
|
|
|
padding: 0.1rem 0.25rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer#footer {
|
2020-11-23 23:47:27 +00:00
|
|
|
color: var(--dim-text);
|
|
|
|
margin: 2rem 0;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|