-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (111 loc) · 1.89 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.abs {
position: absolute;
z-index: 5;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: lightblue;
}
.logo_container {
position: absolute;
background-color: #596e73;
width: 100%;
max-height: 100%;
}
.logo {
bottom: 10px;
right: 20px;
}
.logo .title {
color: white;
font-size: 28px;
}
.logo .subtitle {
position: relative;
color: white;
font-size: 10px;
left: -30px;
top: 20px;
}
#logobutton {
position: absolute;
right: 20px;
bottom: 60px;
height: 40px;
width: 40px;
padding: 4px;
z-index: 5;
}
#setPanel {
visibility: hidden;
background-color: antiquewhite;
opacity: 80%;
color: rgb(0, 0, 0);
font-size: 16px;
position: absolute;
right: 20px;
bottom: 110px;
/*height: 200px;*/
width: 380px;
z-index: 5;
padding: 20px;
border-radius: 10px;
}
.switch-field {
display: flex;
margin-bottom: 10px;
overflow: hidden;
}
.switch-field input {
position: absolute !important;
clip: rect(0, 0, 0, 0);
height: 1px;
width: 1px;
border: 0;
overflow: hidden;
}
.switch-field label {
background-color: #e4e4e4;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 1;
text-align: center;
padding: 8px 16px;
margin-right: -1px;
border: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
transition: all 0.1s ease-in-out;
}
.switch-field label:hover {
cursor: pointer;
}
.switch-field input:checked + label {
background-color: #a5dc86;
box-shadow: none;
}
.switch-field label:first-of-type {
border-radius: 4px 0 0 4px;
}
.switch-field label:last-of-type {
border-radius: 0 4px 4px 0;
}
@media (max-width: 400px){
#setPanel {
visibility: hidden;
font-size: 12px;
right: 2px;
bottom: 100px;
/*height: 200px;*/
width: 325px;
z-index: 5;
}
#setPanel input {
font-size: 12px;
}
.switch-field label {
padding: 3px 4px;
}
}