-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
79 lines (66 loc) · 1.06 KB
/
index.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
73
74
75
76
77
78
79
body {
margin: 0;
padding: 0;
border: 0;
display: inline-flex;
}
.track-button {
font-size: 4em;
color: #58595B;
border-width: .1em;
border-color: #F26522;
border-style: solid;
border-radius: .3em;
padding: .1em;
margin: .1em;
}
.track-button:hover {
background: #DDDDDD;
}
#track-navigation {
overflow-x: hidden;
overflow-y: auto;
padding-right: 1em;
display: inline-block;
}
#course-tree {
background: white;
overflow: auto;
text-align: center;
}
#course-tree svg text {
font-family: FontAwesome;
stroke: #58595B;
fill: #58595B;
}
#course-tree svg rect {
stroke: #F26522;
fill: #FFFFFF;
}
#course-tree svg g {
fill: #FFFFFF;
}
#course-tree svg line {
stroke: #AAAAAA;
}
#course-description {
}
.description-box {
border-width: .1em;
border-color: #F26522;
border-style: solid;
border-radius: .3em;
font-size: 4em;
}
.description-padding {
padding: .1em;
}
.description-heading {
font-size: .4em;
padding: .5em;
text-align: center;
}
.description-content {
font-size: .3em;
padding: .5em;
}