-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (53 loc) · 884 Bytes
/
styles.css
File metadata and controls
66 lines (53 loc) · 884 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
footer {
font-size: small;
color: gray;
padding: 1rem 0;
margin: 1rem 0;
text-align: center;
}
legend {
background-color:#555555;
color: white;
padding: 3px 6px;
}
input {
margin: 0.4rem;
}
#practiceApp input:checked + label {
font-weight: bold;
}
input[type='text'] {
border: #000000 1px solid;
font-size: 2rem;
width: 16ch
}
#answer.correct {
border: #00AA00 1px solid;
}
#answer.incorrect {
border: #FF0000 1px solid;
}
#result.correct {
color: #00AA00;
}
#result.incorrect {
color: #FF0000;
}
section {
max-width: 75ch;
margin: 3rem auto;
}
#quiz {
text-align: center;
padding-top: 2rem;
font-size: 2rem;
}
label {
font-size: larger;
}
input[type='submit'], input[type='reset'] {
font-size: large;
}