-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (99 loc) · 1.86 KB
/
style.css
File metadata and controls
119 lines (99 loc) · 1.86 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
116
117
118
119
body{
min-width: 350px;
font-family: 'Poppins';
font-size: 10pt;
background: rgb(0, 0, 0, 0);
}
.center{
text-align: center;
}
#logo {
margin-top: 30px;
max-width: 150px;
margin-bottom: 20px;
}
input {
margin-bottom: 10px;
margin-top: 10px;
margin-left: 10px;
font-family: 'Poppins';
font-size: 9pt;
}
button {
background-color: #00913D;
border: none;
color: white;
min-width: 200px;
padding: 12px 20px 12px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px 2px;
border-radius: 4px;
font-family: 'Poppins';
font-weight: 950;
transition-duration: 0.4s;
}
button:hover {
background-color: #0b5d2d;
cursor: pointer;
}
a{
color: #00913D;
font-style: normal;
padding-bottom: 20px;
font-size: 8pt;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 28px;
margin-left: 20px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #00913D;
}
input:focus + .slider {
box-shadow: 0 0 1px #00913D;
}
input:checked + .slider:before {
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}