-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (42 loc) · 684 Bytes
/
Copy pathstyles.css
File metadata and controls
50 lines (42 loc) · 684 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
45
46
47
48
49
50
body {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: left;
background-color: #f2f2f2d9;
margin-left: 50px;
}
div {
margin-bottom: 30px;
}
#quiz-container {
width: 100%;
}
select {
width: 30%;
height: 40px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
font-size: 16px;
}
.dropdown-choice {
margin-left: 6px;
}
button {
margin-bottom: 30px;
background-color: rgb(10, 71, 150);
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
}
h1 {
font-size: 30px;
margin-bottom: 30px;
}
label {
margin-right: 10px;
}