-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (62 loc) · 961 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
66
67
68
69
70
71
72
73
74
75
76
body {
background: #fff;
font-size: 18px;
margin: 0 4em 4em 4em;
}
h1,h2,h3,h4,h5,h6 {
margin-top: 2em;
margin-bottom: 0.5em;
}
h1.title {
font-size: 70px;
margin-top: 0.5em;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 12px;
}
pre {
margin-left: 4em;
margin-right: 4em;
}
div.code {
font-family: "Courier New";
border: 1px solid;
border-color: #999999;
background-color: #eeeeee;
padding: 5px 10px;
margin: 10px;
border-radius: 5px;
overflow: auto;
}
.challenge {
margin: 4em;
padding: 2em;
border: 1px solid black;
border-radius: 5px;
background: #ddf;
}
.challenge > :first-child {
margin-top: 0;
}
.objectives {
margin: 4em;
padding: 2em;
border: 1px solid black;
border-radius: 5px;
background: #fed;
}
.objectives > :first-child {
margin-top: 0;
}