personal-site/themes/theme/templates/style.css

118 lines
1.4 KiB
CSS
Raw Normal View History

2020-05-08 00:01:50 +00:00
body {
text-rendering: optimizeLegibility;
2020-05-09 22:17:01 +00:00
font: 1.2rem/1.0 Lato,sans-serif;
background-color: rgb(245, 245, 245);
background-color: white;
2020-05-09 22:17:01 +00:00
}
a {
color: #000000;
text-decoration: none;
outline: none;
2020-05-08 00:01:50 +00:00
}
pre {
font-size: 1rem;
background-color: #eee;
padding: 1rem;
}
2020-05-08 00:01:50 +00:00
.container {
2020-05-09 22:17:01 +00:00
max-width: 56rem;
margin: 2rem auto 0 auto;
2020-05-08 00:01:50 +00:00
}
.sidebar {
2020-05-09 22:17:01 +00:00
margin-top: 2px;
2020-05-08 00:01:50 +00:00
float: left;
width: 8rem;
text-align: right;
}
.sidebar img {
width: 100%;
2020-05-09 22:17:01 +00:00
display: block;
}
.sidebar p {
2020-05-30 01:43:06 +00:00
margin-top: 2rem;
2020-05-08 00:01:50 +00:00
}
.topbar {
2020-05-09 22:17:01 +00:00
text-align: center;
margin-bottom: 2rem;
}
.content .topbar img {
width: 14rem;
height: auto;
2020-05-08 00:01:50 +00:00
}
2020-05-09 22:17:01 +00:00
.toc {
float: right;
background-color: #eee;
padding: 0.75rem;
padding-top: 0;
}
.toc ul {
padding-left: 1.2rem;
margin: 0;
2020-05-09 22:17:01 +00:00
}
.toc li {
margin-top: 0.75rem;
}
.content p.metadata {
color: #555;
font: 1rem/1.0 Apparatus SIL,serif;
font-style: italic;
}
.content div.summary p {
font-style: italic;
2020-05-09 22:17:01 +00:00
}
2020-05-08 00:01:50 +00:00
.content {
2020-05-09 22:17:01 +00:00
max-width: 36rem;
}
.content p {
font: 1.2rem/1.5 Apparatus SIL,serif;
}
.content p a {
2020-05-09 22:17:01 +00:00
border-bottom: 1px solid #000;
2020-05-08 00:01:50 +00:00
}
.content img {
width: 100%;
height: auto;
}
.toclink:not(:hover)::after {
visibility: hidden;
}
.toclink::after {
color: #999;
content: "\00B6";
margin-left: 0.5rem;
}
2020-05-09 22:17:01 +00:00
@media screen and (min-width:36rem) {
2020-05-08 00:01:50 +00:00
.content {
margin-left: 10rem;
}
.topbar {
display: none;
}
}
2020-05-09 22:17:01 +00:00
@media screen and (max-width:36rem) {
2020-05-08 00:01:50 +00:00
.sidebar {
display: none;
}
}