-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (110 loc) · 1.93 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
font-family: Monospace;
font-weight: bold;
}
body {
margin: 0px;
overflow: hidden;
background-color: black;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
canvas {
width: 100%;
height: 100%
}
#controls {
top: 0px;
left: 10px;
position: absolute;
width: 100%;
color: white;
z-index:5;
}
#left {
width: 300px;
float: left;
}
#right {
margin-left: 300px; /* Change this to whatever the width of your left column is ALSO change var windowOffset in js */
}
.clear {
clear: both;
}
.hidden {
display: none;
}
.tabs-menu {
height: 30px;
float: left;
clear: both;
list-style-type: none;
padding-left: 0px;
}
.tabs-menu li {
height: 30px;
line-height: 30px;
float: left;
margin-right: 10px;
background-color: #ccc;
border-top: 1px solid #d4d4d1;
border-right: 1px solid #d4d4d1;
border-left: 1px solid #d4d4d1;
}
.tabs-menu li.currentTab {
position: relative;
background-color: #fff;
border-bottom: 1px solid #fff;
z-index: 5;
}
.tabs-menu li a {
padding: 10px;
color: #1b4b61;
text-decoration: none;
}
.tabs-menu li:hover {
background-color: #fff;
border-bottom: 1px solid #fff;
}
.tab {
float: left;
margin-bottom: 20px;
width: auto;
}
.tab-content {
display: none;
}
button {
margin-right: 5px;
margin-top: 5px;
margin-bottom: 2px;
background-color: #ccc;
color: #1b4b61;
cursor: pointer;
min-width: 170px;
}
button:hover {
background-color: #ffffff;
}
#routeTable {
width:250px;
height: 600px;
overflow-y: auto;
}
#overlay {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.8);
z-index: 10000;
vertical-align: middle;
text-align: center;
color: #fff;
font-size: 20px;
font-weight: bold;
cursor: pointer;
line-height: 140%;
}