blob: 4c02e208f8324403fa249b989e12dcb78d946b12 (
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
40
|
@use "../abstracts/variables" as *;
.text-link {
color: $text-special-dark;
transition: all 0.2s;
&: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;
}
|