-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (51 loc) · 893 Bytes
/
styles.css
File metadata and controls
51 lines (51 loc) · 893 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;
background: #f8f8f8;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 30px auto;
background: #fff;
padding: 30px 40px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
h1 {
text-align: center;
color: #2d6a4f;
}
.question {
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 1px solid #e0e0e0;
}
.answers label {
display: block;
margin-bottom: 6px;
cursor: pointer;
padding-left: 8px;
}
.answers input[type="radio"] {
margin-right: 8px;
}
.result {
font-size: 1.2em;
font-weight: bold;
color: #2d6a4f;
margin-top: 20px;
text-align: center;
}
.note {
font-size: 0.95em;
color: #888;
margin-bottom: 20px;
}
.correct-answer {
color: #2d6a4f;
font-weight: bold;
}
.wrong-answer {
color: #b02a37;
}