-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
105 lines (95 loc) · 1.31 KB
/
stylesheet.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
margin: 0;
padding: 0;
overflow: hidden;
font-family: Verdana, Geneva Arial, Helvetica, sans-serif;
font-size: 10px;
color: #ffffff;
background-color: #000000;
}
/* Welcome Screen */
#welcome {
position: fixed;
top: 0; left: 0;
height: 100%;
width: 100%;
text-align: center;
background-color: #000000;
z-index: 3;
}
#welcome #vertical {
position: absolute;
top: 20%;
left: 0;
width: 100%;
}
#welcome #horizontal {
position: relative;
width: 20%;
height: 10%;
margin: 0 auto;
//background: #252726;
padding: 2%;
}
#horizontal div{
margin: 3em 0;
}
#title {
text-align: center;
}
#progress {
font-family: Monaco, "DejaVu Sans Mono", "Lucida Console", monospace;
white-space: pre;
}
#version {
position: fixed:
margin-top: 5em;
bottom: 0;
right: 0;
text-align: right;
}
#now {
font-style: italic;
}
/* Graph */
#graph {
position: fixed;
top: 0; left: 0;
height: 100%;
width: 100%;
background-color: #000000;
}
.nodetext{
color: #fff;
}
.edge {
stroke: #999;
stroke-width: 1;
stroke-opacity: .2;
z-index: 1;
}
.node {
z-index: 2;
}
/* Gui */
#bar {
top: 0;
right: 0;
}
#titlebox {
padding: 5px;
top: 0;
left: 0;
}
#legend {
padding: 5px;
padding-right: 20px;
bottom: 0;
left: 0;
}
.guibox {
position: fixed;
padding: 5px;
background-color: rgba(0, 0, 0, 0.8);
z-index: 2;
}