-
Notifications
You must be signed in to change notification settings - Fork 0
/
win.css
79 lines (65 loc) · 986 Bytes
/
win.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1, h2, h3, h4 {
font-weight: normal;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
}
#quiz {
background-color: #f2f2f2;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px #ccc;
}
#question {
font-size: 24px;
margin-bottom: 20px;
}
#options {
list-style: none;
padding: 0;
}
#options li {
margin-bottom: 10px;
}
#options label {
font-size: 20px;
cursor: pointer;
}
input[type="radio"] {
margin-right: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
}
button:hover {
background-color: #3e8e41;
}
@media only screen and (max-width: 600px) {
#quiz {
padding: 10px;
}
#question {
font-size: 20px;
}
#options label {
font-size: 18px;
}
button {
font-size: 16px;
padding: 8px 16px;
}
}