-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (61 loc) · 1 KB
/
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
body {
font-family: Verdana;
font-size: 14px;
background-color: bisque;
}
.data-point {
/*fill: grey;*/
/* r: 5; */
}
.solution-point {
/*fill: black;*/
/* r: 5; */
/*stroke: black;*/
/*stroke-width: 1;*/
}
.proposed-solution-point {
fill: none;
stroke: black;
stroke-width: 2;
/* r: 5; */
}
.best-solution-point {
/*fill: black;*/
stroke: black;
stroke-width: 2;
}
.axis {
font-family: MS Gothic, Courier;
font-size: 14px;
}
.code-line {
padding: 5px;
}
.code-comment {
color: grey;
}
.successful-code {
background-color: greenyellow;
}
.errorful-code {
background-color: darksalmon;
}
table, th, td {
border: 1px dashed;
border-collapse: collapse;
padding: 5px;
}
table {
border: 1px solid;
}
td {
text-align: right;
}
td.coordinates { width: 100px; height: 3em; }
.font-small { font-size: 12px;}
.depth-1 { padding-left: 2em; }
.depth-2 { padding-left: 3.5em; }
.depth-3 { padding-left: 5em; }
.depth-4 { padding-left: 6.5em; }
.depth-5 { padding-left: 8em; }
.line-number { color: grey }