forked from leinich/MMM-homeassistant-sensors
-
Notifications
You must be signed in to change notification settings - Fork 14
/
MMM-homeassistant-sensors.css
executable file
·75 lines (62 loc) · 1.16 KB
/
MMM-homeassistant-sensors.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
/*****************************************************
* Magic Mirror 2 *
* Custom CSS for MMM-homeassistant-sensors *
* *
* By Erik Pettersson *
* MIT Licensed. *
* *
*****************************************************/
.ha-small {
font-size: 15px;
line-height: 18px;
font-weight: bold;
color: #999
}
.ha-normal {
font-size: 20px;
line-height: 25px;
color: #999
}
.ha-big {
font-size: 22px;
line-height: 26px;
color: #999
}
.ha-icon {
text-align: right;
font-size: 20px;
}
.ha-img {
text-align: right;
height: 15px;
width: 15px;
border-radius: 50%;
}
.ha-date {
text-align: left;
}
.ha-time {
text-align: left;
}
.ha-name {
text-align: left;
}
.ha-value {
text-align: right;
}
.ha-unit {
text-align: left;
}
.blinkhigh {
animation: blinker 3.5s linear infinite;
color: #ff5555;
}
.blinklow {
animation: blinker 3.5s linear infinite;
color: #55acee;
}
@keyframes blinker {
50% {
opacity: 0.3;
}
}