-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-Temp2IOT.css
43 lines (38 loc) · 1.1 KB
/
MMM-Temp2IOT.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
.MMM-Temp2IOT {
display: flex;
flex-direction: column;
align-items: flex-end; /* Modulinhalt rechts ausrichten */
}
.MMM-Temp2IOT header {
width: 100%; /* Header auf die volle Breite setzen */
text-align: right;
border-bottom: 1px solid #666;
margin-bottom: 10px;
padding-bottom: 5px;
}
.MMM-Temp2IOT .sensor-row {
display: grid;
grid-template-columns: 40px auto; /* Zwei Spalten: Symbol (40px) und Text */
align-items: center;
gap: 5px; /* Abstand zwischen den Spalten */
margin-bottom: 10px; /* Abstand zwischen den Zeilen */
margin-right: 5px;
width: 100%; /* Zeilenbreite füllen */
}
.MMM-Temp2IOT .iconify {
font-size: 40px; /* Größere Symbole */
text-align: center; /* Symbole zentrieren */
margin-right: 10px;
}
.MMM-Temp2IOT .sensor-name {
font-size: 26px;
color: #999;
text-align: right; /* Text rechtsbündig */
margin-left:5px;
}
.MMM-Temp2IOT .sensor-value {
text-align: right; /* Wert rechtsbündig */
font-size: 30px; /* Größere Schriftgröße */
font-weight: bold;
color: #fff; /* Weißer Text */
}