-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizstyle.css
71 lines (69 loc) · 1.25 KB
/
quizstyle.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
body{
font-family:Arial, Helvetica, sans-serif;
background-color: antiquewhite;
height:100vh;
margin:0;
align-items:center;
display:flex;
justify-content: center;
}
.quiz-container{
background-color: rgb(96, 170, 235);
border-radius: 8px;
width: 300px;
padding:30px;
text-align:center;
}
#ques-no{
font-size:1em;
margin-bottom: 10px;
font-weight: bold;
}
#question{
font-size: 1.2em;
margin-bottom: 20px;
}
.options{
display: flex;
flex-direction: column;
}
.option{
background-color: rgb(18, 7, 64);
color: rgb(255, 249, 249);
border: none;
padding:30px;
margin: 5px 0;
cursor:pointer;
border-radius: 4px;
transition: background-color 0.3s;
}
.option:hover{
background-color: rgb(132, 21, 235);
}
.footer{
display: flex;
justify-content: space-between;
align-items:center;
margin-top: 20px;
}
#timer{
font-weight: bold;
}
#next{
background-color: blanchedalmond;
color: blue;
border: none;
padding: 10px;
cursor:pointer;
border-radius: 10px;
transition: background-color 0.3s;
}
#next:hover{
color: green;
}
.option.correct{
background-color: green;
}
.option.incorrect{
background-color: red;
}