2019-11-10 11:45:15 +00:00
|
|
|
p,
|
|
|
|
a,
|
|
|
|
span,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
strong,
|
|
|
|
em,
|
|
|
|
h6,
|
2020-02-21 11:44:13 +00:00
|
|
|
li,
|
2020-04-25 09:36:07 +00:00
|
|
|
label,
|
2019-11-10 11:45:15 +00:00
|
|
|
.separator {
|
|
|
|
font-family: $font;
|
2020-02-25 12:35:02 +00:00
|
|
|
color: $text;
|
2019-11-10 11:45:15 +00:00
|
|
|
margin-bottom: $size-16;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2020-02-21 13:10:27 +00:00
|
|
|
font-family: $font;
|
|
|
|
font-weight: 700;
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
2020-02-21 13:10:27 +00:00
|
|
|
font-family: $font;
|
|
|
|
font-style: italic;
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 11:44:13 +00:00
|
|
|
small {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
2019-11-10 11:45:15 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 84px;
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:10:27 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4 {
|
|
|
|
font-family: $font-title;
|
|
|
|
// font-style: italic;
|
|
|
|
}
|
|
|
|
|
2019-11-10 11:45:15 +00:00
|
|
|
h1,
|
|
|
|
.h1 {
|
|
|
|
font-size: $size-64;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2,
|
|
|
|
.h2 {
|
|
|
|
font-size: $size-32;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3,
|
|
|
|
.h3 {
|
|
|
|
font-size: $size-16;
|
|
|
|
}
|
|
|
|
|
|
|
|
p,
|
|
|
|
.text-p {
|
|
|
|
font-size: $size-14;
|
|
|
|
font-family: $font;
|
|
|
|
line-height: $size-32;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-02-21 11:44:13 +00:00
|
|
|
// color: $black;
|
2019-11-10 11:45:15 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:visited {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator {
|
|
|
|
max-width: $size-512 + $size-128;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-02-21 11:44:13 +00:00
|
|
|
@include margin-vertical($size-16);
|
2019-11-10 11:45:15 +00:00
|
|
|
|
|
|
|
.dot {
|
|
|
|
height: $size-8;
|
|
|
|
width: $size-8;
|
|
|
|
border-radius: 100%;
|
|
|
|
background-color: $black;
|
2020-02-21 11:44:13 +00:00
|
|
|
// mix-blend-mode: exclusion;
|
2019-11-10 11:45:15 +00:00
|
|
|
|
|
|
|
&.background-blue {
|
2020-02-21 11:44:13 +00:00
|
|
|
background-color: $highlight-darker;
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
&.background-white {
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 09:36:07 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $turquoise;
|
|
|
|
|
|
|
|
&:visited {
|
|
|
|
color: $highlight-darker;
|
|
|
|
}
|
2020-07-29 13:05:02 +00:00
|
|
|
|
|
|
|
&.with-url-arrow {
|
|
|
|
text-decoration: none;
|
|
|
|
&::before {
|
|
|
|
content: '→ ';
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 09:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: $highlight;
|
|
|
|
color: $white;
|
|
|
|
}
|