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