-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (68 loc) · 1.29 KB
/
style.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
body{
background-color: #f9f9f9;
width: 200px;
padding: 0 2rem;
}
.title{
font-family: "Gothic A1", sans-serif;
font-weight: 400;
font-style: normal;
text-align: center;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
.activate{
all: unset;
font-family: "Gothic A1", sans-serif;
font-weight: 400;
font-style: normal;
padding: 0.6rem 3rem;
border-radius: 10rem;
background-color: #0f0f0f;
color: #f2f2f2;
user-select: none;
}
.activate:hover{
cursor: pointer;
background-color: #272727;
}
.activated:hover{
cursor: pointer;
background-color: #e5e5e5;
}
.activated{
background-color: #f2f2f2;
color: #0f0f0f;
border: 1px solid #e5e5e5;
}
.options{
all: unset;
font-family: "Gothic A1", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 0.9rem;
color: #0f0f0f;
user-select: none;
}
.options:hover{
cursor: pointer;
}
.settings_container{
all: unset;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.settings_container li{
all: unset;
font-family: "Gothic A1", sans-serif;
font-weight: 400;
font-style: normal;
list-style: none;
font-size: 0.9rem;
}