-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (105 loc) · 2.5 KB
/
style.css
File metadata and controls
115 lines (105 loc) · 2.5 KB
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
:root {
--background-color: #fff;
--text-color: #121416d8;
--link-color: #543fd7;
}
html[data-theme='light'] {
--background-color: #fff;
--text-color: #121416d8;
--link-color: #543fd7;
}
html[data-theme='dark'] {
--background-color: #212a2e;
--text-color: #F7F8F8;
--link-color: #828fff;
}
body {
background: var(--background-color);
color: var(--text-color);
}
a {
color: var(--link-color);
}
a:hover {
text-decoration: underline;
filter: brightness(80%);
}
.simple-center {
display:flex;
justify-content:center;
align-items:center;
width:100%;
height:100%;
}
.common-button {
background:linear-gradient(to bottom, #ff9900 5%, #f08400 100%);
background-color:#ff9900;
border-radius:28px;
border: none;
cursor:pointer;
color:#f7f8f8;
font-family:Courier New;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #000000;
}
.common-button:hover {
background:linear-gradient(to bottom, #f08400 5%, #ff9900 100%);
background-color:#f08400;
}
.common-button:active {
position:relative;
top:1px;
}
.common-button input {
display: block !important;
width: 157px !important;
height: 57px !important;
opacity: 0 !important;
overflow: hidden !important;
}
img.rounded {
object-fit: cover;
border-radius: 50%;
width: auto;
height: auto;
}
.onoffswitch {
position: relative; width: 55px;
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
position: absolute;
opacity: 0;
pointer-events: none;
}
.onoffswitch-label {
display: block; overflow: hidden; cursor: pointer;
height: 20px; padding: 0; line-height: 20px;
border: 0px solid #FFFFFF; border-radius: 30px;
background-color: #4D4848;
}
.onoffswitch-label:before {
content: "";
display: block; width: 30px; margin: -5px;
background: #262424;
position: absolute; top: 0; bottom: 0;
right: 31px;
border-radius: 30px;
box-shadow: 0 6px 12px 0px #757575;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
background-color: #FCEE83;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
border-color: #FCEE83;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
right: 0px;
background-color: #FFF940;
box-shadow: 3px 6px 18px 0px rgba(0, 0, 0, 0.2);
}