blob: 0944dcca69597af3ebc0f473abfffa36177679ea (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
.settings {
text-align: center;
padding: 1em;
span {
padding: .5em;
}
div {
text-align: left;
margin: 1.5em 0;
&:nth-of-type(1) {
margin-top: .5em;
}
&:nth-of-type(2) {
span {
padding: 0 .75em;
transition: .3s color;
display: inline-block;
color: var(--color-decor);
&:hover {
color: #666;
}
}
.settings__langactive {
color: var(--color-text);
font-weight: 600;
}
}
&:nth-of-type(3) {
margin-top: 3em;
}
&:nth-of-type(4) > span {
width: 2em;
height: 2em;
display: inline-block;
margin: 0 1em;
outline-offset: 4px;
&:nth-of-type(1) {
background-color: #53e3a6;
}
&:nth-of-type(2) {
background-color: #2986b3;
}
&:nth-of-type(3) {
background-color: #000;
}
}
}
input {
margin: 1em auto;
}
&__active {
outline: 3px solid var(--color-window-buttons);
}
}
|