-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-ShellyPV.css
81 lines (69 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* MMM-ShellyPV.css */
.shellyPVGauge {
display: inline-block;
flex-direction: column;
align-items: center;
margin: 0 auto;
padding: 10px;
color: #333;
width: 400px; /* 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;
}
/* Geraete-Liste im flexbox-Layout */
.shellyPVGauge ul {
display: flex;
flex-wrap: wrap; /* Bei zu vielen Geraeten in die naechste Zeile umbrechen */
padding: 0;
margin: 0;
list-style: none;
gap: 10px; /* Abstand zwischen den Geraeten */
justify-content: center; /* Zentriert die Geraete in der Breite */
max-width: 100%; /* Passt die Geraete-Liste an die Breite an */
justify-content: center; /* Zentriert die Geraete nebeneinander */
}
.shellyPVGauge ul li {
padding: 2px 5px;
background-color: #f0f0f0; /* Hintergrundfarbe der Geraete */
color: #333; /* Textfarbe */
font-weight:bold;
border-radius: 8px;
font-size: 17px;
box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.6), 4px 3px 4px rgba(0, 0, 0, 0.4);
}
/* Für das spezielle Geraet mit konstantem Namen */
.shellyPVGauge ul li.specialDevice {
background-color: #3498db; /* Blau fuer export. Vergleiche gauge in MMM-ShellyPV.js */
color: white; /* Weisser Text für besseren Kontrast */
}
/* Für das grüne Hintergrund, wenn das Geraet eingeschaltet ist */
.shellyPVGauge ul li.on {
background-color: #3eaf7c; /* Grün, wenn eingeschaltet */
color: white; /* Weisser Text für besseren Kontrast */
}
/* Standard Hintergrundfarbe, wenn das Geraet ausgeschaltet ist */
.shellyPVGauge ul li.off {
background-color: #f0f0f0; /* Standard Hintergrund, wenn ausgeschaltet */
color: #333; /* Standard Textfarbe */
}
/* Power value style */
.ShellyDevicePowerValue {
font-style: oblique; /* Highlight the power value */
font-size: 17px; /* Match the font size of the device name */
font-weight:bold;
color: #f0f0f0; /* Subtle contrast color for power values */
}