-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyles.css
More file actions
51 lines (43 loc) · 722 Bytes
/
syles.css
File metadata and controls
51 lines (43 loc) · 722 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
51
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
margin: 20px 0;
}
.choices {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.box {
display: inline-block;
cursor: pointer;
padding: 10px;
background-color: lightblue;
border: 1px solid #333;
border-radius: 5px;
}
.question-container {
max-width: 400px;
margin: 0 auto;
}
#question {
margin-bottom: 10px;
}
#answers {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#answers button {
margin: 5px;
padding: 8px 15px;
cursor: pointer;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 5px;
}
#answers button:hover {
background-color: #e0e0e0;
}