blob: 8cb9e9d8a1cc9b9c1994aafea7b0e7fc57f4f5c4 (
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
41
|
/* HEADER */
.site__header {
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: var(--gap-medium);
}
.site-selections,
.site-selections * {
display: flex;
align-items: center;
justify-content: center;
gap: var(--gap-medium);
}
.site-title {
color: inherit !important;
font-size: var(--font-size-h1);
font-weight: bold;
text-decoration: none;
}
/* Flag Icon */
.language-select__language-item img {
height: 2rem;
}
.theme-toggle {
background-color: var(--text-color);
border: none;
border-radius: var(--border-radius-max);
color: var(--bg-main);
cursor: pointer;
padding: 0.2rem;
}
.theme-toggle svg {
display: none;
}
|