-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (52 loc) · 881 Bytes
/
style.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
a {
color: inherit;
}
body {
color: WhiteSmoke;
background-color: SteelBlue;
font-family: arial, helvetica, sans-serif;
}
footer {
color: WhiteSmoke;
text-align: center;
}
section {
background-color: WhiteSmoke;
border: 5px solid LightSteelBlue;
border-radius: 25px;
clear: both;
color: SteelBlue;
padding: 30px;
margin: 30px auto;
width: 750px;
}
form ol {
background-image:
linear-gradient(90deg, transparent 40px, LightSteelBlue 40px, LightSteelBlue 42px, transparent 42px),
linear-gradient(#EEE .1em, transparent .1em);
background-size: 100% 1.3em;
}
form input {
clear: both;
text-align: center;
}
form input[type=submit] {
width: 100%;
}
form li {
margin: 0 0 10px 0;
}
h1 {
font-variant: small-caps;
}
h1, h2 {
text-align: center;
}
h3.complete {
color: green;
text-align: center;
}
h3.corrections {
color: red;
text-align: center;
}