15
15
}
16
16
17
17
.container-mid {
18
- max-width : 90% ;;
18
+ max-width : 98% ;
19
+ padding : 0 ;
19
20
}
20
21
21
22
.center-row {
25
26
text-align : center ;
26
27
}
27
28
28
- @media (max-width : 1200 px ) and (min-width : 992px ) {
29
+ @media (max-width : 1199 px ) and (min-width : 992px ) {
29
30
html {
30
31
font-size : 17px ;
31
32
}
35
36
}
36
37
}
37
38
38
- @media (max-width : 992 px ) and (min-width : 768px ) {
39
+ @media (max-width : 991 px ) and (min-width : 768px ) {
39
40
html {
40
41
font-size : 17px ;
41
42
}
45
46
}
46
47
}
47
48
48
- @media (max-width : 768 px ) and (min-width : 576 px ) {
49
+ @media (max-width : 767 px ) and (min-width : 575 px ) {
49
50
html {
50
51
font-size : 16px ;
51
52
}
@@ -71,10 +72,10 @@ body {
71
72
72
73
// headings
73
74
.main-heading {
74
- font-family : ' Playfair Display ' , serif ;
75
- font-size : 2.6 rem ;
76
- font-weight : 700 ;
77
- padding-bottom : 1.5 rem ;
75
+ font-family : ' Inter ' , sans- serif ;
76
+ font-size : 2.4 rem ;
77
+ font-weight : 600 ;
78
+ padding-bottom : 1 rem ;
78
79
}
79
80
80
81
// text
@@ -222,21 +223,38 @@ body {
222
223
}
223
224
224
225
// modals
225
- .modal {
226
+ .modal-content {
226
227
border-radius : 0.5rem ;
227
228
}
228
229
229
230
.modal-heading {
230
- font-family : ' Playfair Display ' , serif ;
231
- font-size : 2.3 rem ;
232
- font-weight : 700 ;
231
+ font-family : ' Inter ' , sans- serif ;
232
+ font-size : 2 rem ;
233
+ font-weight : 600 ;
233
234
padding-bottom : 0 ;
235
+ margin-top : -2rem ;
236
+ padding-left : 1.9rem ;
234
237
padding-top : 1.3rem ;
238
+
239
+ svg {
240
+ font-size : 2rem ;
241
+ margin-right : 0.2rem ;
242
+ padding-bottom : 0.2rem ;
243
+ }
235
244
}
236
245
237
246
.modal-header {
238
247
border-bottom : 0 ;
239
248
padding : 0 ;
249
+ padding-right : 4rem ;
250
+ padding-top : 2.8rem ;
251
+
252
+ .close {
253
+ background-color : $navbar-light ;
254
+ border-radius : 50% ;
255
+ box-shadow : 0 2px 2px $shadow-black ;
256
+ padding : 0.4rem 0.6rem ;
257
+ }
240
258
}
241
259
242
260
.modal-body {
@@ -250,7 +268,7 @@ body {
250
268
.modal-delete-container {
251
269
margin-left : auto ;
252
270
margin-right : auto ;
253
- padding-top : 1rem ;
271
+ padding : 1rem ;
254
272
text-align : center ;
255
273
}
256
274
@@ -274,6 +292,7 @@ body {
274
292
transition : all .3s ease-in ;
275
293
a {
276
294
color : $white ;
295
+ text-shadow : 1px 1px $subheading-black ;
277
296
text-decoration : none ;
278
297
279
298
& :hover {
@@ -285,5 +304,63 @@ body {
285
304
& :hover {
286
305
transform : translateY (-3px );
287
306
}
307
+ }
288
308
289
- }
309
+ .primary-big-tag {
310
+ color : $white ;
311
+ font-size : 1.8rem ;
312
+ font-weight : 600 ;
313
+ margin : 0 0.2rem ;
314
+ padding : 0.4rem 0.8rem ;
315
+ }
316
+
317
+ // checkboxes
318
+ .primary-checkpoint {
319
+ background-color : $shadow-black ;
320
+ bottom : 0 ;
321
+ display : inline-block ;
322
+ height : 1.5rem ;
323
+ position : absolute ;
324
+ width : 1.5rem ;
325
+
326
+ & ::after {
327
+ content : ' ' ;
328
+ display : none ;
329
+ position : absolute ;
330
+ }
331
+ }
332
+
333
+ .primary-checkpoint-container {
334
+ cursor : pointer ;
335
+ display : block ;
336
+ font-size : 1rem ;
337
+ position : relative ;
338
+
339
+ input {
340
+ height : 0 ;
341
+ opacity : 0 ;
342
+ position : absolute ;
343
+ width : 0 ;
344
+ }
345
+
346
+ h6 {
347
+ display : inline-block ;
348
+ margin-bottom : 0 ;
349
+ margin-right : 0.5rem ;
350
+ }
351
+
352
+ input :checked ~ .primary-checkpoint {
353
+ background-color : $primary-button ;
354
+
355
+ & ::after {
356
+ border : solid $white ;
357
+ border-width : 0 3px 3px 0 ;
358
+ display : block ;
359
+ height : 1rem ;
360
+ left : 0.5rem ;
361
+ top : 0.15rem ;
362
+ transform : rotate (45deg );
363
+ width : 0.5rem ;
364
+ }
365
+ }
366
+ }
0 commit comments