-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.css
88 lines (86 loc) · 1.56 KB
/
quiz.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
box-sizing: border-box;
}
body{
background-color: #b8c6db;
background-image: linear-gradient(315deg, #b8c6db 0%, #f5f7f7 100%);
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
a { text-decoration: none; }
.ques{
font-size: large;
font-weight: 1000;
font-family: inherit;
}
.options{
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
width: 600px;
height: 200px;
overflow: hidden;
}
h2{
padding: 1rem;
text-align: center;
margin: 0;
}
ul{
list-style-type: none;
padding: 0;
}
ul li{
font-size: 1.2rem;
margin: 1rem 0;
}
ul li label{
cursor: pointer;
}
.next, .prev, .viewscore, .scoreboard{
margin-top: 30px;
background-color: #03cae4;
color: #fff;
border: none;
width: 50%;
cursor: pointer;
font-size: 1.1rem;
font-family: inherit;
padding: 10px 50px;
border-radius: 10px;
}
button:hover{
background-color: #04adc4;
}
button:focus{
outline: none;
background-color: #44b927;
}
.piechart{
background-color: #03cae4;
color: #fff;
border: none;
width: 100%;
cursor: pointer;
font-size: 1.1rem;
font-family: inherit;
padding: 10px 50px;
}
.timer{
height: 20px;
width: 100%;
border-radius: 7px 0 0 7px;
display: block;
background-color:#03cae4;
}
.viewscoree{
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
font-weight: 200;
}