2018-08-21 19:26:15 +00:00
|
|
|
*,
|
|
|
|
*:after,
|
|
|
|
*:before {
|
2020-02-02 17:13:35 +00:00
|
|
|
box-sizing: inherit;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2020-02-02 17:13:35 +00:00
|
|
|
box-sizing: border-box;
|
2020-02-09 19:48:18 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
font-size: 61.5%;
|
|
|
|
}
|
|
|
|
font-size: 72%;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: $fg-color;
|
|
|
|
background-color: $bg-color;
|
2020-02-02 17:13:35 +00:00
|
|
|
font-family: $text-font-family;
|
|
|
|
font-size: 1.6em;
|
|
|
|
font-weight: $text-font-weight;
|
2018-08-21 19:26:15 +00:00
|
|
|
line-height: 1.8em;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 1.6em;
|
2018-08-21 19:26:15 +00:00
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-02-02 17:13:35 +00:00
|
|
|
font-family: $text-font-family;
|
|
|
|
font-weight: $text-font-weight;
|
2018-09-14 12:02:58 +00:00
|
|
|
color: $link-color;
|
2020-02-19 15:55:34 +00:00
|
|
|
letter-spacing: 0.3px;
|
|
|
|
margin: 0 1px;
|
2018-08-21 19:26:15 +00:00
|
|
|
text-decoration: none;
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-09 17:58:47 +00:00
|
|
|
.content a {
|
|
|
|
opacity: 1;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-21 19:26:15 +00:00
|
|
|
p {
|
2020-02-02 17:13:35 +00:00
|
|
|
margin: 2rem 0 2rem 0;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-family: $heading-font-family;
|
2020-02-02 17:13:35 +00:00
|
|
|
font-weight: $heading-font-weight;
|
2018-08-21 19:26:15 +00:00
|
|
|
color: $alt-fg-color;
|
2018-09-14 12:02:58 +00:00
|
|
|
margin: 6.4rem 0 3.2rem 0;
|
2020-02-14 20:10:23 +00:00
|
|
|
text-align: center;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 3.2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 3.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
font-size: 3rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 3.4rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 2.8rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 3.2rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 2.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
line-height: 3rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 2.4rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.8rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 2.2rem;
|
|
|
|
line-height: 2.6rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 2.2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
font-size: 2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.4rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h5 {
|
2020-02-02 17:13:35 +00:00
|
|
|
font-size: 2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.4rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 1.8rem;
|
|
|
|
line-height: 2.2rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h6 {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 1.8rem;
|
|
|
|
line-height: 2.2rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-size: 1.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
line-height: 2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:13:35 +00:00
|
|
|
b,
|
|
|
|
strong {
|
|
|
|
font-family: $text-font-family;
|
|
|
|
font-weight: $text-font-weight--bold;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
2020-01-31 18:16:13 +00:00
|
|
|
.highlight > div,
|
|
|
|
.highlight > pre {
|
|
|
|
margin: 0 0 2rem;
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 1rem;
|
|
|
|
}
|
|
|
|
|
2018-08-21 19:26:15 +00:00
|
|
|
pre {
|
2018-09-14 12:02:58 +00:00
|
|
|
display: block;
|
|
|
|
font-family: $code-font-family;
|
|
|
|
font-size: 1.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
font-weight: $code-font-weight;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.6rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
overflow-x: auto;
|
2020-01-31 18:16:13 +00:00
|
|
|
margin: 0;
|
2018-09-14 12:02:58 +00:00
|
|
|
code {
|
2018-11-26 15:56:31 +00:00
|
|
|
display: inline-block;
|
2018-09-14 12:02:58 +00:00
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2018-09-14 12:02:58 +00:00
|
|
|
font-family: $code-font-family;
|
|
|
|
font-size: 1.6rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
font-weight: $code-font-weight;
|
2018-09-14 12:02:58 +00:00
|
|
|
background-color: $alt-bg-color;
|
|
|
|
color: $fg-color;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 2px solid $alt-bg-color;
|
2020-02-02 17:13:35 +00:00
|
|
|
padding-left: 2rem;
|
2018-09-14 12:02:58 +00:00
|
|
|
line-height: 2.2rem;
|
2020-02-02 17:13:35 +00:00
|
|
|
font-weight: $text-font-weight;
|
2018-08-21 19:26:15 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:13:35 +00:00
|
|
|
th,
|
|
|
|
td {
|
2018-08-21 19:26:15 +00:00
|
|
|
padding: 1.6rem;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
2020-02-02 17:13:35 +00:00
|
|
|
table td,
|
|
|
|
table th {
|
2018-08-21 19:26:15 +00:00
|
|
|
border: 2px solid $alt-fg-color;
|
|
|
|
}
|
|
|
|
table tr:first-child th {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
table tr:last-child td {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
table tr td:first-child,
|
|
|
|
table tr th:first-child {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
table tr td:last-child,
|
|
|
|
table tr th:last-child {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-09-14 12:02:58 +00:00
|
|
|
|
2018-08-21 19:26:15 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
margin: 0 auto;
|
2020-02-02 17:13:35 +00:00
|
|
|
max-width: 90rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
width: 100%;
|
2020-02-02 17:13:35 +00:00
|
|
|
padding-left: 2rem;
|
|
|
|
padding-right: 2rem;
|
2018-08-21 19:26:15 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 12:02:58 +00:00
|
|
|
.fab {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fas {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
2018-08-21 19:26:15 +00:00
|
|
|
.float-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.float-left {
|
|
|
|
float: left;
|
|
|
|
}
|
2018-09-17 14:48:27 +00:00
|
|
|
|
|
|
|
.fab {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fas {
|
|
|
|
font-weight: 900;
|
|
|
|
}
|