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

188 lines
2.4 KiB
CSS
Raw Normal View History

2020-06-03 04:26:52 +00:00
html {
overflow-y: scroll;
}
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-06-03 04:26:52 +00:00
border-bottom: 1px solid #000;
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;
}
2020-08-27 20:30:43 +00:00
.sidebar .me {
2020-05-08 00:01:50 +00:00
width: 100%;
2020-05-09 22:17:01 +00:00
display: block;
}
2020-08-27 20:30:43 +00:00
.sidebar .info {
2020-05-30 01:43:06 +00:00
margin-top: 2rem;
2020-05-08 00:01:50 +00:00
}
2020-08-27 20:30:43 +00:00
.sidebar .contact-icons a {
border-bottom: none;
}
.sidebar .contact-icons img {
width: 1.25rem;
height: 1.25rem;
margin-left: 0.5rem;
}
2020-05-08 00:01:50 +00:00
.topbar {
display: table;
overflow: auto;
margin: auto;
margin-top: -0.5rem;
font-size: 1.5rem;
}
.topbar .me {
float: left;
height: 6rem;
width: auto;
}
.topbar .info {
float: left;
margin-top: -0.25rem;
margin-left: 1.5rem;
}
.topbar .contact-icons {
margin-top: 1.5rem;
margin-left: 0.25rem;
margin-bottom: 0;
}
.topbar .contact-icons a {
border-bottom: none;
}
.topbar .contact-icons img {
width: 1.5rem;
height: 1.5rem;
margin-right: 1rem;
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;
margin-left: 0.75rem;
}
.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 {
2020-06-03 04:26:52 +00:00
margin-top: -0.5rem;
margin-left: 1rem;
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;
}
2020-06-03 04:26:52 +00:00
.content ul {
2020-06-09 19:40:38 +00:00
padding-left: 1.1rem;
2020-06-03 04:26:52 +00:00
}
.content li {
font: 1.2rem/1.5 Apparatus SIL,serif;
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;
}
}
2020-06-09 19:40:38 +00:00
.darkmode-toggle {
z-index: 500;
background: black !important;
}
.darkmode-toggle--white {
z-index: 500;
background: grey !important;
2020-06-09 19:40:38 +00:00
}
.darkmode--activated .content img {
filter: brightness(75%);
}
.darkmode--activated video {
mix-blend-mode: difference;
}
2020-08-29 00:18:12 +00:00
.darkmode--activated .contact-icons img {
filter: invert(1);
}