-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
104 lines (91 loc) · 1.8 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
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{
height: 100%;
/*background-color: rgba(20,22,24,.9);*/
/*-webkit-filter: blur(4px) opacity(0.3);*/
background: -webkit-linear-gradient(rgba(0,0,0,1), rgba(48,72,94,1));
background-repeat: no-repeat;
color:white;
font-family: "Helvetica";
color: white;
}
#header p{
border: 2px solid #C0C0C0;
text-align: center;
color: white;
font-size: 100px;
background-color: rgba(63, 181, 231, 0.3);
margin: 30px 72px 30px 72px;
border-radius: 20px;
}
.topLayer #currentStatusChart {
border: 2px solid #C0C0C0;
height: 400px;
width: 90%;
margin: 20px auto;
background-color: rgba(201,225,247,.5);
border-radius: 200px;
}
#currentStatusChart path {
fill-rule: evenodd;
fill-opacity: .7;
stroke: #666;
stroke-width: 5.5px;
}
.info, .chargingStatus, .center{
fill: white;
font-size: 20px;
}
#historyChart {
border: 2px solid #C0C0C0;
height: 500px;
width: 95%;
margin: 0 auto;
background-color: rgba(110,126,142,.5);
border-radius: 20px;
}
.barLabels {
fill: white;
}
.axis path,
.axis line {
fill: none;
stroke: white;
shape-rendering: crispEdges;
}
/*tool-tip*/
div.tooltip {
position: absolute;
text-align: center;
width: 140px;
height: 50px;
padding: 2px;
font: 15px sans-serif;
background: orange;
border: 0px;
border-radius: 8px;
pointer-events: none;
color: white;
}
#historyChart .nav {
list-style-type: none;
margin: 0;
padding: 0;
}
#historyChart .nav #right{
float: right;
}
#historyChart .nav li {
display: inline;
padding: 3px 5px 3px 5px;
background-color: maroon;
color: white;
border-radius: 5px;
margin: 3px 3px 3px 3px;
}
#mapContainer {
height: 400px;
width: 95%;
margin: 0 auto;
border-radius: 20px;
border: 2px solid #C0C0C0;
}