-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-ShellyPV.css
66 lines (56 loc) · 1.68 KB
/
MMM-ShellyPV.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
/* MMM-ShellyPV.css */
.shellyPVGauge {
display: inline-block;
flex-direction: column;
align-items: center;
margin: 0 auto;
padding: 10px;
color: #333;
width: 350px; /* Feste Gesamtbreite */
box-sizing: border-box;
}
#powerGauge {
margin: 0 auto;
display: flex;
justify-content: center;
}
.shellyPVGauge svg {
}
.shellyPVGauge text {
font-weight: bold;
color:white;
mix-blend-mode: difference;
}
.shellyPVGauge circle {
transition: stroke-dasharray 0.3s ease;
}
/* Geräte-Liste im flexbox-Layout */
.shellyPVGauge ul {
display: flex;
flex-wrap: wrap; /* Bei zu vielen Geräten in die nächste Zeile umbrechen */
padding: 0;
margin: 0;
list-style: none;
gap: 10px; /* Abstand zwischen den Geräten */
justify-content: center; /* Zentriert die Geräte in der Breite */
max-width: 100%; /* Passt die Geräte-Liste an die Breite an */
justify-content: center; /* Zentriert die Geräte nebeneinander */
}
.shellyPVGauge ul li {
padding: 5px 10px;
background-color: #f0f0f0; /* Hintergrundfarbe der Geräte */
color: #333; /* Textfarbe */
border-radius: 8px;
font-size: 14px;
box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.6), 4px 3px 4px rgba(0, 0, 0, 0.4);
}
/* Für das grüne Hintergrund, wenn das Gerät eingeschaltet ist */
.shellyPVGauge ul li.on {
background-color: #28a745; /* Grün, wenn eingeschaltet */
color: white; /* Weißer Text für besseren Kontrast */
}
/* Standard Hintergrundfarbe, wenn das Gerät ausgeschaltet ist */
.shellyPVGauge ul li.off {
background-color: #f0f0f0; /* Standard Hintergrund, wenn ausgeschaltet */
color: #333; /* Standard Textfarbe */
}