3
3
: root {
4
4
--c-base : # f9f9f9 ;
5
5
--c-primary : red;
6
- --c-primary-active : # cc0000 ;
7
- --c-primary-active-focus : # 990000 ;
6
+ --c-primary-active : # ea0000 ;
7
+ --c-primary-active-focus : # cc0000 ;
8
8
--c-primary-inverse : # 232228 ;
9
9
--c-secondary : # 167ac6 ;
10
10
--c-success : # 23CF5F ;
@@ -81,7 +81,7 @@ a:active {
81
81
vertical-align : middle;
82
82
user-select : none;
83
83
border : 1px solid transparent;
84
- padding : .5 rem 1 rem ;
84
+ padding : 6 px 15 px ;
85
85
text-decoration : none;
86
86
transition : all .1s ease-out;
87
87
outline : 0 ;
@@ -95,6 +95,46 @@ a:active {
95
95
padding : 5px 17px ;
96
96
}
97
97
98
+ .btn-link {
99
+ background-color : transparent;
100
+ color : rgba (35 , 34 , 40 , 0.3 );
101
+ }
102
+
103
+ .btn-link : hover {
104
+ color : rgba (35 , 34 , 40 , 0.6 );
105
+ }
106
+
107
+ .btn-link : active {
108
+ color : var (--c-primary-inverse );
109
+ }
110
+
111
+ .btn-primary {
112
+ background-color : var (--c-primary );
113
+ color : var (--c-white );
114
+ }
115
+
116
+ .btn-primary : hover {
117
+ background-color : var (--c-primary-active );
118
+ }
119
+
120
+ .btn-primary : active {
121
+ background-color : var (--c-primary-active-focus );
122
+ }
123
+
124
+ .btn-primary-inverse {
125
+ background-color : var (--c-primary-inverse );
126
+ color : rgba (255 , 255 , 255 , 0.6 );
127
+ }
128
+
129
+ .btn-primary-inverse : hover {
130
+ color : var (--c-white );
131
+ }
132
+
133
+ .btn-primary-inverse : active {
134
+ background-color : var (--c-black );
135
+ color : var (--c-white );
136
+ }
137
+
98
138
: root {
99
139
--menu-diff : 175px ;
100
140
}
@@ -337,12 +377,99 @@ a:active {
337
377
visibility : visible;
338
378
}
339
379
340
- # test {
341
- height : 50px ;
342
- width : 10px ;
343
- background : red;
344
- cursor : e-resize;
345
- position : relative;
380
+ .modal-overlay {
381
+ position : fixed;
382
+ overflow : hidden;
383
+ width : 100% ;
384
+ height : 100% ;
385
+ left : 0 ;
386
+ top : 0 ;
387
+ z-index : 999 ;
388
+ }
389
+
390
+ .modal-background-overlay {
391
+ background-color : rgba (0 , 0 , 0 , 0.3 );
392
+ position : absolute;
393
+ overflow : hidden;
394
+ width : 100% ;
395
+ height : 100% ;
396
+ left : 0 ;
397
+ top : 0 ;
398
+ }
399
+
400
+ .modal-container {
401
+ position : absolute;
402
+ background-color : var (--c-white );
403
+ color : var (--c-black );
404
+ top : 50% ;
405
+ right : 50% ;
406
+ transform : translate (50% , -50% );
407
+ width : 400px ;
408
+ height : 400px ;
409
+ text-align : center;
410
+ padding-top : 30px ;
411
+ padding-bottom : 90px ;
412
+ animation : loading-animation 0.2s 1 ;
413
+ }
414
+
415
+ .modal-container h2 {
416
+ margin-top : 10px ;
417
+ font-size : 18px ;
418
+ font-weight : 400 ;
419
+ padding : 0 40px ;
420
+ margin-bottom : 30px ;
421
+ }
422
+
423
+ .modal-content {
424
+ padding : 0 20px ;
425
+ }
426
+
427
+ .modal-content img {
428
+ width : 200px ;
429
+ height : auto;
430
+ }
431
+
432
+ .modal-content p {
433
+ margin-top : 5px ;
434
+ }
435
+
436
+ .modal-close {
437
+ position : absolute;
438
+ top : 13px ;
439
+ right : 15px ;
440
+ cursor : pointer;
441
+ }
442
+
443
+ .modal-close span {
444
+ font-size : 18px ;
445
+ color : rgba (0 , 0 , 0 , 0.6 );
446
+ }
447
+
448
+ .modal-close span : active {
449
+ color : var (--c-black );
450
+ }
451
+
452
+ .modal-buttons {
453
+ display : block;
454
+ width : 100% ;
455
+ position : absolute;
456
+ bottom : 0 ;
457
+ }
458
+
459
+ .modal-buttons .btn {
460
+ display : block;
461
+ margin : 5px auto;
462
+ padding : 15px ;
463
+ border : none;
464
+ text-transform : uppercase;
465
+ font-weight : 600 ;
466
+ padding : 11px 10px ;
467
+ font-size : 12px ;
468
+ }
469
+
470
+ .modal-buttons .btn-primary {
471
+ width : 70% ;
472
+ border-radius : 30px ;
346
473
}
347
474
348
475
.current-video-all {
0 commit comments