-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-014-sample-quiz2.css
More file actions
60 lines (53 loc) · 1.02 KB
/
100-projects-014-sample-quiz2.css
File metadata and controls
60 lines (53 loc) · 1.02 KB
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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #333444;
font-family: Arial, sans-serif;
}
.quiz-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 60%;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px 2px #888;
background-color: #fff;
}
.quiz-container h2 {
font-size: 2em;
font-weight: 700;
color: #333;
text-align: center;
}
.options {
display: flex;
flex-direction: column;
width: 100%;
margin-top: 20px;
}
.option {
margin: 10px 0;
padding: 10px;
border-radius: 5px;
box-shadow: 0px 0px 0px 1px #888;
cursor: pointer;
}
.option:hover {
background-color: #f0f0f0;
}
button {
padding: 10px;
border-radius: 5px;
box-shadow: 0px 0px 10px 2px #888;
background-color: #424c8d;
color: white;
}
button:hover {
background-color: blue;
}