-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (97 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (97 loc) · 1.64 KB
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
body {
background-color: #666;
}
.container {
background-color: #fff;
padding: 2% 2% 4% 2%;
margin-top: 10px;
border-radius: 10px;
box-shadow: 0 0 10px #222;
position: relative;
}
.footer {
position: absolute;
bottom: 0;
right: 0;
left: 0;
background-color: #999;
font-size: 10px;
color: white;
border-radius: 10px;
padding: 1%;
}
.chart {
font-size: 0;
border: 1px solid black;
width: 100%;
height: 300px;
margin: 10px 0;
overflow-y: hidden;
white-space: nowrap;
}
.one_line {
display: inline-block;
width: 1px;
position: relative;
height: 100%;
}
.current_usage_household {
background-color: rgba(0, 0, 255, 0.603);
position: absolute;
bottom: 0;
width: 1px;
}
.current_usage_heat_pump {
background-color: rgba(255, 0, 0, 0.596);
position: absolute;
bottom: 0;
width: 1px;
}
.current_photovoltaik {
background-color: rgba(255, 238, 0, 0.61);
position: absolute;
bottom: 0;
width: 1px;
}
.battery_charge{
background-color: rgba(0, 128, 0, 0.61) !important;
}
.battery_discharge{
background-color: rgba(0, 255, 200, 0.61) !important;
}
.meter {
border: 1px solid black;
border-radius: 5px;
height: 200px;
width: 100%;
}
.module {
background-color: #eee;
border-radius: 10px;
padding: 20px;
}
.module input {
width: 100%;
}
.text {
background-color: coral;
position: absolute;
bottom: 0;
width: 100%;
}
.module .meter {
overflow: hidden;
position: relative;
}
.one_result {
margin: 5px;
background-color: #eee;
padding: 5px;
border-radius: 5px;
display: inline-block;
}
.color_box {
width: 10px;
height: 10px;
display: inline-block;
}