-
Notifications
You must be signed in to change notification settings - Fork 5
/
global.css
53 lines (53 loc) · 861 Bytes
/
global.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
body {
margin: 0;
background: #000;
color: #FFF;
font-family: 'Sen', sans-serif;
}
h2 {
font-size: 1em;
margin: 0.5em;
color: #DDD;
font-family: 'Helvetica';
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
#regions {
font-size: 0.8em;
padding: 0.5em;
max-height: 90vh;
overflow: auto;
-ms-overflow-style: none;
scrollbar-width: none;
flex-shrink: 0;
}
#regions::-webkit-scrollbar {
display: none;
}
#regions li {
color: #CCC;
}
#regions li.selected {
font-weight: bold;
color: #c9587a;
}
#regions li:hover {
color: #FFF;
cursor: default;
}
#graph {
display: flex;
}
#canvas-container {}
#graph canvas {}
.source {
font-size: 0.8em;
color: #888;
margin: 2em 5em;
width: 60%;
}
a { color: #ccc; text-decoration: none; }
a:hover { color: #fff; }