-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
86 lines (77 loc) · 1.96 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
body {
background-color: #f8f9fa!important;
}
*:focus {outline: none !important; box-shadow: none !important;}
.bg-purple {
background-color: #6f42c1;
}
.answer-choices-box input{
display: none;
}
input[type="radio"] + label{
cursor: pointer;
}
input[type="radio"]:checked+label{
background: #ff9800;
color: #fff;
}
.count-down-box{
right: 1rem;
top:1rem;
padding: 10px;
}
.count-down-box .badge{
min-width: 80px;
line-height: 30px;
}
.quiz-start-icon{
width:100px;height:100px; display:block;
}
.quiz-start-text{
font-size:60px; font-weight:bolder; margin-left:20px;
}
.start-to-quiz{
margin-top:70px;
padding:40px;
}
.d-flex.d-none{
display: none !important;
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}