-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (60 loc) · 1.03 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
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
#header {
position: absolute;
z-index: 1;
width: 80% vw;
background-color: rgb(1, 1, 1);
color: rgb(201, 201, 201);
padding: 20px;
font-family: "Roboto", sans-serif;
font-weight: normal;
font-size: 100%;
}
#chartbox {
position: absolute;
z-index: 1;
width: 25%;
height: 100%;
background-color: rgba(1, 1, 1, 0.7);
color: rgb(206, 252, 244);
padding: 20px;
font-family: Helvetica, sans-serif;
font-weight: bold;
font-size: 150%;
}
.bolded {
font-weight: bold;
}
body {
background: #1d1f20;
padding: 0px;
width: 25%;
height: 100%;
}
.chart-container {
z-index: 2;
position: absolute;
margin: auto;
width: 90%;
height: 80%;
bottom: 10px;
}
#routedesc {
position: absolute;
text-align: center;
z-index: 1;
width: 80%;
height: 70%;
bottom: 0px;
background-color: rgba(1, 1, 1, 0);
color: rgb(201, 201, 201);
padding: 20px;
font-family: "Roboto", sans-serif;
font-weight: normal;
font-size: 100%;
}