-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
65 lines (52 loc) · 836 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
64
65
* {
font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans;
box-sizing: border-box;
}
body {
background-color: cornsilk;
}
header {
margin: 1em;
}
main {
display: grid;
grid-template-columns: 2fr 2fr 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: 1em;
}
section {
padding: 1em;
min-height: 88vh;
}
h1 {
margin-left: 2em;
font-family:monospace;
font-size: 2.5em;
}
.instructions {
background-color: burlywood;
}
.troubleshooting {
background-color: lavender;
}
.correct {
background-color: thistle;
}
section h2 {
text-align: center;
}
.troubleshooting img {
width: 600px;
height: auto;
}
.troubleshooting p:nth-last-child(1) {
margin: 2em;
}
#show {
height: 3em;
}
iframe {
display: block;
margin: 0 auto;
}