"README.md" did not exist on "3821e45bcc44fa45dd8b9393c7e27a1be099cbc3"
Newer
Older
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
/* Comments in code. */
.comment {
color: purple;
}
/* Highlighted changes in code. */
.highlight {
background-color: mistyrose;
}
/* Manual input. */
.in {
color: darkgreen;
}
/* Program output. */
.out {
color: darkblue;
font-style: italic;
}
/* Error output. */
.err {
color: darkred;
font-style: italic;
font-weight: bold;
}
/* Explanatory call-out boxes. */
div.box {
background-color: lightgray;
}
/* Challenge questions. */
div.challenges {}
/* Key points in summary. */
div.keypoints {}
/* Main lesson. */
div.lesson {}
/* Learning objectives. */
div.objectives {}
/* Continuation paragraph. */
p.continue {}