-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (41 loc) · 764 Bytes
/
styles.css
File metadata and controls
44 lines (41 loc) · 764 Bytes
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
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.quiz{
max-width: 500px;
width: 100%;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.options{
display: flex;
flex-wrap: wrap;
margin-top: 20px;
}
.option {
width: 48%;
margin: 1%;
padding: 15px;
border: none;
border-radius: 5px;
font-size: 10px;
color: white;
background-color: rgb(2, 122, 32);
cursor: pointer;
}
.option:hover {
background-color: rgb(2, 150, 39);
}
#score {
font-size: 20px;
font-weight: bold;
text-align: center;
display: none;
margin-bottom: 15px;
}