blob: d2adadb2f5d6366a81b66fcf76d38723a41a049a (
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
|
.root {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
padding: 20px;
background: var(--color-background);
color: var(--color-text);
text-align: center;
}
.yacd {
color: #2a477a;
opacity: 0.6;
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
}
.link {
display: inline-flex;
align-items: center;
color: var(--color-text-secondary);
&:hover,
&:active {
color: var(--color-focus-blue);
}
svg {
margin-right: 5px;
}
}
|