rf-web/_sass/typography.scss
2019-11-10 12:45:15 +01:00

93 lines
1.1 KiB
SCSS

p,
a,
span,
h1,
h2,
h3,
h4,
h5,
strong,
em,
h6,
.separator {
font-family: $font;
color: $white;
margin-bottom: $size-16;
&::selection {
background-color: transparent;
color: transparent;
text-shadow: 3px 0 8px;
}
}
strong {
font-family: $font-bold;
}
em {
font-family: $font-italic;
}
h1 {
font-size: 84px;
}
h1,
.h1 {
font-size: $size-64;
font-family: $font-title;
font-style: italic;
}
h2,
.h2 {
font-size: $size-32;
font-family: $font-title;
font-style: italic;
}
h3,
.h3 {
font-size: $size-16;
font-family: $font-title;
font-style: italic;
}
p,
.text-p {
font-size: $size-14;
font-family: $font;
line-height: $size-32;
}
a {
color: $black;
font-weight: bold;
&:hover,
&:visited {
font-style: italic;
}
}
.separator {
max-width: $size-512 + $size-128;
display: flex;
justify-content: center;
.dot {
height: $size-8;
width: $size-8;
border-radius: 100%;
background-color: $black;
&.background-blue {
background-color: $highlight;
}
&.background-white {
background-color: $white;
}
}
}