-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
265 lines (241 loc) · 4.42 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Open Sans", sans-serif;
font-weight: 900;
}
body
{
border: 10px solid green;
border-style: double;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
line-height: 1.6;
}
*/
h1{
font-weight: bold;
font-size: 30px;
}
.menubar{
background-color: #4B0082;
color: #fff;
height: 45px;
}
.menubar ul{
display: flex;
}
.menubar a{
color:#fff;
padding: 10px;
margin:0 5px;
}
.menubar a:hover{
border-bottom: 2px #fff solid;
}
.menubar .flex{
justify-content: space-between;
align-items: center;
}
/*.trainingContainer {
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}*/
.trainingContainer h2 {
font-size:15px;
color:#888;
text-align:center;
font-weight: bold;
gap:20px;
}
.trainingContainer .list {
margin-top:25px;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
max-width:100%;
}
.form-element {
position:relative;
width:110px;
height:110px;
}
.form-element input {
display:none;
}
.overlay{
position:relative;
}
.form-element label {
width:100%;
display:flex;
justify-content:center;
align-items: flex-end;
height:100%;
cursor:pointer;
border:2px solid #ddd;
background:#fff;
box-shadow:0px 5px 20px 2px rgba(0,0,0,0.1);
text-align:center;
transition:all 200ms ease-in-out;
border-radius:5px;
position: absolute;
bottom: 0;
font-size:14px;
font-weight:bold;
color: #4B0082;
text-transform: uppercase;
}
.form-element .icon {
margin-top:10px;
font-size:30px;
font-weight:900;
color:#555;
transition:all 200ms ease-in-out;
justify-content:center;
}
.form-element .title {
font-size:10px;
font-weight:900;
color:#555;
padding:5px 0px;
transition:all 200ms ease-in-out;
}
.form-element label:before {
content:"✓";
position:absolute;
width:10px;
height:10px;
top:8px;
left:8px;
background:#4B0082;;
color:#fff;
text-align:center;
line-height:18px;
font-size:5px;
font-weight:900;
border-radius:50%;
opacity:0;
transform:scale(0.5);
transition:all 200ms ease-in-out;
}
.form-element input:checked + label .icon {
color:#4B0082;
}
.form-element input:checked + label .title {
color:#4B0082;
}
.form-element input:checked + label {
border:2px solid #4B0082;
}
button {
display: inline-block;
background-color:#4B0082;
color: #fff;
padding: 15px 32px;
cursor:pointer;
border: none;
border: radius 5px;
max-width: 30%;
max-height: 15%;
font-weight: bold;
text-align: center;
font-size: 14px;
margin: 4px 4px;
position: absolute;
left: 50%;
transform: translateX(-50%);
text-transform: uppercase;
}
.select2.narrow {
background: #4B0082;
color: #fff;
padding: 10px 30px;
cursor:pointer;
border: none;
border: radius 5px;
margin-top: 15px;
max-width: 30%;
max-height: 15%;
font-weight: bold;
text-align: center;
font-size: 14px;
}
.fname {
color: #4B0082;
padding: 10px 30px;
border: #4B0082;
border: radius 5px;
margin-top: 15px;
max-width: 40%;
max-height: 15%;
font-weight: bold;
font-size: 14px;
}
.fname1 {
color: #4B0082;
padding: 10px 30px;
cursor:pointer;
border: none;
border: radius 5px;
margin-top: 15px;
max-width: 40%;
max-height: 15%;
font-weight: bold;
text-align: center;
font-size: 14px;
text-transform: uppercase;
}
input[type=text] {
width: 100%;
padding: 10px 30px;
margin: 8px 0;
box-sizing: border-box;
border: 3px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
}
input[type=text]:focus {
border: 3px solid #555;
}
#progressBarContainer {
position: absolute;
left: 50%;
transform: translateX(-50%);
text-transform: uppercase;
width: 50%;
height: 30px;
margin-top: 20px;
border-radius: 20px;
background-color: #ddd;
overflow: hidden;
}
#progressBar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #4B0082;
}
#progressBarPercent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 14px;
font-weight: bold;
color: white;
text-align: center;
line-height: 30px;
}