blob: 38f3a3f13a6cf42fd28ee880217862938b677497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
@use "../abstracts/variables" as *;
.text-link {
color: $text-special-dark;
&:hover {
background-color: $text-special-dark;
border-radius: 2px;
color: $text-dark;
text-decoration: none;
}
}
.text-emphasis {
color: $text-special-light;
font-weight: bold;
}
.title {
font-family: "Archivo Black", sans-serif;
color: $text-special-light;
font-size: $big-text;
width: fit-content;
}
.subtitle {
font-family: "Archivo Black", sans-serif;
color: $text-special-dark;
font-size: $medium-text;
}
.name {
font-size: calc(2 * $big-text);
}
.note-auriga {
color: $text-special-dark;
font-style: italic;
}
|