forked from MAF1981/MMM-Homematic-Heaters
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMMM-Homematic-Thermostats.css
104 lines (85 loc) · 2.09 KB
/
MMM-Homematic-Thermostats.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
/* --------------------------------------------------------------------- */
/* Style lines */
/* --------------------------------------------------------------------- */
/* The device container (covering deviceLabel, suffix, deviceActualTemperature, deviceSetTemperature */
.deviceContainer {
color: #fff;
display: block;
}
/* The current mode in brackets, i.e.: (heizt mit 27%)*/
.deviceMode{
color: #BDBDBD;
font-size: smaller;
}
.deviceLabel {
/*put your styles here*/
}
.deviceActualTemperature{
/*put your styles here*/
}
.deviceSetTemperature{
/*put your styles here*/
}
/* The errors displayed below the device information */
.faultReporting {
color: #FF0000;
font-weight: bold;
font-size: smaller;
display: block;
line-height: .5;
margin-bottom: 15pt;
}
/* --------------------------------------------------------------------- */
/* Style table */
/* --------------------------------------------------------------------- */
.MMM-Homematic-Thermostats td {
text-align: left;
}
.MMM-Homematic-Thermostats th {
text-align: left;
}
tr.deviceContainer {
width: 100%;
}
/* The current mode in brackets, i.e.: (heizt mit 27%)*/
td.deviceMode {
text-align: center;
width:150px;
}
td.deviceLabel {
width: 180px;
}
td.deviceActualTemperature {
text-align: right;
width: 100px;
}
td.deviceSetTemperature {
text-align: right;
width: 100px;
}
td.deviceSetHumidity {
text-align: right;
width: 100px;
}
/* The errors displayed below the device information */
td.faultReporting {
width: 300px;
}
/* --------------------------------------------------------------------- */
/* colors warnings */
/* --------------------------------------------------------------------- */
.MMM-Homematic-Thermostats .red {
color: red;
}
.MMM-Homematic-Thermostats .green {
color: green;
}
.MMM-Homematic-Thermostats .blue {
color: blue;
}
.MMM-Homematic-Thermostats .yellow {
color: yellow;
}
.MMM-Homematic-Thermostats .white {
color: white;
}