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
77
78
79
80
81
82
83
84
85
86
87
|
.exercise {
background: #b1e2be url(images/signature.png) no-repeat top left;
color: navy;
margin: 0 5% 0 1em;
padding: 0 .5em .5em 25px;
border-left: 1px solid gray;
border-right: 2px solid gray;
border-top: 1px solid gray;
border-bottom: 2px solid gray;
-moz-border-radius: 10px;
border-radius: 10px;
}
.exercisebox, .runoutput {
width: 80%;
margin-bottom: 1.5em;
}
.exercisebuttons {
text-align: right;
}
/* Test case outputs are shown as a bulleted list, with these icons as the
* bullets. */
li.check {
list-style: url(images/check.png);
}
li.cross {
list-style: url(images/cross.png);
}
li.pass {
list-style: url(images/pass.png);
}
li.fail {
list-style: url(images/fail.png);
}
li.semifail {
list-style: url(images/semifail.png);
}
li.exception {
list-style: url(images/exception.png);
}
li.complete {
list-style: url(images/pass.png);
}
li.incomplete {
list-style: url(images/incomplete.png);
}
li.semicomplete {
list-style: url(images/semifail.png);
}
#tutorial-toc li.complete {
list-style: url(images/tiny/complete.png);
margin-left: 1.5em;
}
#tutorial-toc li.incomplete {
list-style: url(images/tiny/incomplete.png);
margin-left: 1.5em;
}
#tutorial-toc li.semicomplete {
list-style: url(images/tiny/semicomplete.png);
margin-left: 1.5em;
}
h1 a, h2 a {
color: black;
text-decoration: none;
cursor: default;
}
h1 a:hover, h2 a:hover {
color: black;
text-decoration: none;
cursor: default;
}
.attempthistory h3 {
font-size: 1em;
color: black;
}
/* Drop-down box */
.attempthistory select {
width: 20em;
}
|