-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
394 lines (351 loc) · 11.7 KB
/
styles.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
body {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
background-color: #2F2F2F; /* Set the background color of the page */
color: darkgray;
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
display: flex; /* Use flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 100vh; /* Set the height of the body to full viewport height */
}
h1,h2,h3,h4,h5,h6 {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
hr {
border: none;
border-top: 1px dashed #333; /* Dashed border with dark color */
background-color: #333;
width: 50%; /* Set the width to 50% */
margin: 20px auto; /* Auto margin for horizontal centering */
}
p {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
textarea {
resize: none;
}
#tophead {
max-width: 870px;
width: 100%;
background-color: #171717;
margin-top: 5px;
margin-bottom: 10px;
margin-left: 5px;
margin-right: 5px;
padding: 8px;
border: 0.5px; /* Remove default border */
border-style: inset;
box-shadow: inset 0 0 10px rgba(19, 18, 18, 0.5);
border-color: #2f2f2f;
border-radius: 4px; /* Add border radius */
text-align: center;
}
#uos {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 25px;
color: rgb(250, 234, 11);
text-align: center;
height: auto; /* Set height of the div */
}
#examtype {
width: 100%;
font-size: 25px;
}
#timer {
font-family: "Quantico", sans-serif;
font-optical-sizing: auto;
font-size: 100px;
font-weight: normal;
font-style: normal;
color: #ccc;
cursor: none;
}
#curtime,
#message,
#pretime {
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 20px;
font-style: normal;
color: #ffffff;
}
#pretime {
font-size: 18px;
font-weight: normal;
color: #797676;
}
#control {
font-size: 30px;
color: #ebebeb;
}
#pause:hover {
color: #424242;
cursor: pointer;
}
#less,
#more {
color: #ebebeb;
font-weight: bold;
}
#less:hover,
#more:hover {
color: #e64626;
cursor: pointer;
}
#error {
font-family: "Poppins", sans-serif;
font-weight: 300;
font-style: normal;
color: rgb(246, 10, 10);
text-align: center;
height: auto; /* Set height of the div */
align-items: middle; /* Center vertically */
padding: 20px; /* Add padding inside the container */
}
.main-container {
max-width: 1200px;
min-width: 900px;
text-align: center;
background-color: #212121;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
border: 0.5px; /* Remove default border */
border-style: inset;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* Inset shadow with increased blur radius */
border-color: #211f1f;
border-radius: 4px; /* Add border radius */
}
.container input[type="text"],
.container textarea {
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
color: #ccc;
text-align: center;
align-items: center; /* Center horizontally */
justify-content: center; /* Center vertically */
font-size: 18px;
background-color: #171717; /* Set background color */
border: 0.5px; /* Remove default border */
border-style: inset;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* Inset shadow with increased blur radius */
border-color: #2f2f2f;
border-radius: 4px; /* Add border radius */
padding: 8px; /* Add padding */
margin: 5px 0; /* Add margin */
}
textarea:focus {
border-color: #2a2c2c; /* Change border color when focused */
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* Inset shadow with increased blur radius */
}
/* BUTTONS STYLES HERE */
/* FOR PAGE BUTTONS STYLING */
/* Common button styles */
.setup-button,
.reset-button {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: bold;
text-transform: uppercase; /* Capitalize text */
font-weight: bold; /* specify the weight or thickness of the characters */
background: linear-gradient(to bottom, #03558f, #205d8a); /* Add linear gradient background */
width: 150px;
box-shadow: inset 0 0 10px rgba(12, 12, 12, 0.705);
color: #ffffff; /* Set text color */
border: 1px; /* Remove default border */
border-color: #77bff7;
border-radius: 4px; /* Add border radius */
padding: 8px 30px; /* Add padding (8px top & bottom, 25px left & right) */
margin: 10px 0; /* Add margin */
cursor: pointer; /* Set cursor to pointer on hover */
letter-spacing: 2px; /* Add extra spacing between letters */
}
.start-button {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: bold;
text-transform: uppercase; /* Capitalize text */
font-weight: bold; /* specify the weight or thickness of the characters */
background: linear-gradient(to bottom, #4caf50, #2e7d32); /* Green gradient */
color: #ffffff;
width: 150px;
box-shadow: inset 0 0 10px rgba(12, 12, 12, 0.705);
color: #ffffff; /* Set text color */
border: 1px; /* Remove default border */
border-color: #77bff7;
border-radius: 4px; /* Add border radius */
padding: 8px 30px; /* Add padding (8px top & bottom, 25px left & right) */
margin: 10px 0; /* Add margin */
cursor: pointer; /* Set cursor to pointer on hover */
letter-spacing: 2px; /* Add extra spacing between letters */
}
.back-button {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: bold;
text-transform: uppercase; /* Capitalize text */
font-weight: bold; /* specify the weight or thickness of the characters */
background: linear-gradient(to bottom, #ff5252, #c62828); /* Red gradient */
color: #ffffff;
width: 150px;
box-shadow: inset 0 0 10px rgba(12, 12, 12, 0.705);
color: #ffffff; /* Set text color */
border: 1px; /* Remove default border */
border-color: #77bff7;
border-radius: 4px; /* Add border radius */
padding: 8px 30px; /* Add padding (8px top & bottom, 25px left & right) */
margin: 10px 0; /* Add margin */
cursor: pointer; /* Set cursor to pointer on hover */
letter-spacing: 2px; /* Add extra spacing between letters */
}
/* Button hover effects */
.setup-button:hover,
.reset-button:hover {
background-image: linear-gradient(#034d85, #01223a); /* Add vertical gradient on hover */
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* Add inset shadow on hover */
}
.start-button:hover {
background-image: linear-gradient(#47a41e, #306f15); /* Add vertical gradient on hover */
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* Add inset shadow on hover */
}
.back-button:hover {
background-image: linear-gradient(#ed1505, #96221a); /* Add vertical gradient on hover */
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* Add inset shadow on hover */
}
button:hover {
background: #014579;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
/* MAIN STYLING */
/* Configure the Preparation Section Page */
#prepare {
background-color: #333333;
border-color: rgb(71, 71, 71);
border-radius: 4px; /* Add border radius for rounded corners */
padding: 20px;
display: flex; /* Use flexbox for layout */
flex-direction: column; /* Arrange elements vertically */
align-items: center; /* Center horizontally */
justify-content: center; /* Center vertically */
border-style: inset;
border: 2px inset #2f2f2f; /* Add an inset border */
box-shadow: inset 0 0 10px rgba(19, 18, 18, 0.5);
}
/* Configure the Information Description within the Timer Setup Section Page */
#optionalinfo {
max-width: 850px;
width: 100%;
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 18px;
color: #05FA5D;
background-color: #202020; /* Set background color */
border: 0.5px; /* Remove default border */
border-style: inset;
box-shadow: inset 0 0 10px rgba(19, 18, 18, 0.5);
border-color: #2f2f2f;
border-radius: 4px; /* Add border radius */
padding: 8px; /* Add padding */
margin: 5px 0; /* Add margin */
box-sizing: border-box; /* Include padding and border in element's total width and height */
}
/* Configure the Exam Section Page */
#exam {
max-width: 800px;
background-color: #212121;
border-color: rgb(71, 71, 71);
border-radius: 4px; /* Add border radius for rounded corners */
padding: 20px;
display: flex; /* Use flexbox for layout */
flex-direction: column; /* Arrange elements vertically */
align-items: center; /* Center horizontally */
justify-content: center; /* Center vertically */
border-style: inset;
border: 2px inset #2f2f2f; /* Add an inset border */
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* Inset shadow with increased blur radius */
}
/* Configure the Information Description within the Exam Section Page */
#addinfo {
max-width: 850px;
width: 100%;
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
color: #05FA5D;
align-content: center;
text-align: center;
font-size: 18px;
background-color: #171717; /* Set background color */
border: 0.5px; /* Remove default border */
border-style: inset;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* Inset shadow with increased blur radius */
border-color: #2f2f2f;
border-radius: 4px; /* Add border radius */
padding: 8px; /* Add padding */
margin: 5px 0; /* Add margin */
box-sizing: border-box; /* Include padding and border in element's total width and height */
}
/* FOOTER */
.footer {
position: fixed;
font-weight: 600;
height: 20px;
font-size: 11px;
left: 0;
bottom: 0;
color: #4d4242;
text-align: center;
padding: 20px 0;
z-index: 1000;
text-align: center;
width: 100%;
font-optical-sizing: auto;
text-transform: uppercase;
justify-content: center;
align-content: center;
padding-top: 5px;
padding-bottom: 5px;
color: #524f4d;
background-color: #212121;
border-style: inset;
box-shadow: inset 0 0 25px rgba(19, 18, 18, 0.5);
border-top: 8px;
border-top-color: black;
border-width: 1px;
border-color: #2f2f2f;
}
/* PRINT BUTTON SECTION */
/* Optional styling for the print button */
.print-button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px;
cursor: pointer;
border: none; /* Remove button border */
border-radius: 5px; /* Rounded corners */
}
/* Optional styling for the print icon */
.print-icon {
margin-right: 5px;
}