-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.css
82 lines (66 loc) · 1.18 KB
/
options.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
html {
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}
.logo {
margin-left: auto;
margin-right: auto;
width: 100px;
height: 100px;
display: flex;
border-radius: 50%;
}
.title {
text-align: center;
}
.option_line {
display: flex;
padding-left: 12vw;
}
.options {
margin-left: auto;
margin-right: auto;
}
.option_text {
font-size: 15px;
}
.theme_option {
margin-left: auto;
margin-right: auto;
display: flex;
}
.light {
background-color: #FFF;
color: #000;
}
.dark {
background-color: rgba(28, 27, 34);
color: #CCC;
}
input[type="file"] {
margin-top: 15px;
}
input[type="radio"] {
display: none;
}
label {
margin: 10px;
font-size: 20px;
padding: 5px;
cursor: pointer;
}
label:hover {
transform: scale(1.1);
}
label[for="light"] {
border-bottom: solid rgba(28, 27, 34) 1px;
}
label[for="dark"] {
border-bottom: solid white 1px;
}
input[id="light"]:checked ~ label[for="light"] {
transform: scale(1.1);
}
input[id="dark"]:checked ~ label[for="dark"] {
transform: scale(1.1);
}