forked from CFenner/MMM-Netatmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netatmo.bubbles.css
70 lines (70 loc) · 1.19 KB
/
netatmo.bubbles.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
.netatmo {
display: inline-block;
}
.netatmo ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.netatmo ul .room {
padding: 0.25em 0.5em;
text-align: left;
}
.netatmo ul .primary {
text-align: right;
}
.netatmo ul .name,
.netatmo ul .secondary,
.netatmo ul .data {
text-align: left;
}
.netatmo ul .secondary {
text-align: center;
width: 5em;
}
.netatmo ul .secondary .co2 .visual {
border-radius: 1em;
box-shadow: 0 0 0.9em 1em;
height: 0.1em;
margin: 1.5em auto;
width: 0.1em;
}
.netatmo ul .secondary .co2 .good {
background-color: limegreen;
color: limegreen;
}
.netatmo ul .secondary .co2 .average {
background-color: orange;
color: orange;
}
.netatmo ul .secondary .co2 .bad {
background-color: red;
color: red;
}
.netatmo ul .secondary .co2 .undefined {
background-color: #000;
color: #000;
}
.netatmo ul .secondary .wind-angle .visual {
display: inline-block;
}
.netatmo ul .data {
width: 8em;
}
.netatmo ul .data .flash {
animation: flasher 3s linear infinite;
}
.netatmo ul .data .red {
color: red;
}
@keyframes flasher {
50% {
opacity: 0;
}
}
.netatmo ul .data div * {
margin: 0 2px;
}
.netatmo.horizontal ul > li {
display: inline-block;
}