redesign updates
[rnaseq-cwl-training.git] / lesson.css
1 /* Comments in code. */
2 .comment {
3     color: purple;
4 }
5
6 /* Highlighted changes in code. */
7 .highlight {
8     background-color: mistyrose;
9 }
10
11 /* Manual input. */
12 .in {
13     color: darkgreen;
14 }
15
16 /* Program output. */
17 .out {
18     color: darkblue;
19     font-style: italic;
20 }
21
22 /* Error output. */
23 .err {
24     color: darkred;
25     font-style: italic;
26     font-weight: bold;
27 }
28
29 /* Explanatory call-out boxes. */
30 div.box {
31     background-color: lightgray;
32 }
33
34 /* Challenge questions. */
35 div.challenges {}
36
37 /* Key points in summary. */
38 div.keypoints {}
39
40 /* Main lesson. */
41 div.lesson {}
42
43 /* Learning objectives. */
44 div.objectives {}
45
46 /* Continuation paragraph. */
47 p.continue {}