-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotre_quizz.css
120 lines (104 loc) · 2.12 KB
/
notre_quizz.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
@import url('https://fonts.googleapis.com/css2?family=Phudu:[email protected]&display=swap');
body {
background: linear-gradient(rgb(152, 94, 152), rgb(125, 152, 179));
background-repeat: no-repeat;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
padding: 30px;
height: 100%;
background-attachment: fixed;
margin: 0;
overflow: hidden;
}
/* .border {
border: 1vw solid rgb(57, 25, 57);
height: 96vh;
width: 98vw;
position: absolute;
top: 0;
left: 0;
} */
#quiz-container {
margin-bottom: 20px;
}
.back {
text-decoration: none;
font-size: 1em;
cursor: pointer;
}
.back:hover {
background-color: rgb(143, 50, 131);
color: rgb(220, 227, 235);
}
#timer {
/* border: 10px solid rgb(57, 25, 57);
border-radius: 40%; */
width: 10px;
height: 10px;
padding: 15px;
margin: 15px;
font-size: 3em;
font-weight: 600;
font-family: 'Phudu';
color: rgb(57, 25, 57);
}
.timer_css {
position: absolute;
top:10px;
left: 200px;
}
#progressBar {
width: 40%;
height: 50px;
margin-bottom: 30px;
}
.question {
font-size: 2em;
font-family: 'Phudu';
font-weight: 600;
text-align: center;
}
.options {
display: flex;
flex-direction: column;
gap: 5px;
font-size: 20px;
width: 100%;
}
.noTransition {
transition: none;
height: 50px;
width: 120px;
}
button {
border-radius: 20px;
border: 4px solid rgb(193, 187, 100);
height: 40px;
margin-bottom: 20px;
background-color: rgb(1, 1, 54);
color: rgb(220, 227, 235);
font-size: 1em;
font-family: 'Phudu';
font-weight: 400;
height: 90px;
transition: all 0.4s ease-in-out;
margin: 20px;
}
button:hover {
background-color: rgb(73, 54, 91);
color: white;
font-size: 30px;
}
.button-container {
margin-top: 80px;
display: flex;
justify-content: flex-end;
}
.answer-img {
margin-top: 20px;
object-fit: cover;
width: 550px;
border: 5px solid rgb(57, 25, 57);
border-radius: 20px;
margin-left: calc(50% - 280px);
}