-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.css
105 lines (87 loc) · 1.57 KB
/
settings.css
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
* {
color: var(--fg);
}
body {
flex-direction: column;
display: flex;
padding: 0px 30px;
justify-content: start;
height: 100%; width: 100%;
background: var(--background)!important;
}
.settings div {
margin: 30px 0px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.settings div * {
margin: 5px 0px;
}
.settings div.buttons {
display: block;
}
.settings div.homePage a {
text-decoration: underline;
}
.settings div.homePage ul {
padding-left: 30px;
}
main.main {
width: 93vw;
margin: 70px 25px 0px 25px;
}
label#labelUploadBackground {
padding: 5px;
background: var(--background);
color: var(--fg);
border-radius: .5em;
border: 2px solid var(--fg);
}
.settings input[type=radio] {
margin-right: 5px;
}
input[type=radio]:checked:after {
background: var(--accent);
}
input[type=radio]:after {
content: '';
width: 15px;
height: 15px;
background: var(--fg);
border-radius: 3px;
display: block;
transition: .3s;
}
input[type=file] {
display: none;
}
h3 {
margin: 5px 0px;
}
.alert {
opacity: 0;
top: 25px;
left: 50%;
width: fit-content;
position: sticky;
transform: scaleX(0) translate(-50%, -0%);
background: var(--background);
border-radius: 5px;
border: 2px solid var(--fg);
padding: 8px 10px;
}
.dangerZone * {
border-color: #eb2349;
color: #eb2349;
}
hr {
border: 1px solid var(--cards);
}
footer {
font-size: .8em;
color: #a0a0a0;
}
footer a {
text-decoration: underline;
}