forked from CFenner/MMM-Netatmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetatmo.bubbles.less
66 lines (61 loc) · 1.15 KB
/
netatmo.bubbles.less
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
@good: limegreen;
@average: orange;
@bad: red;
.xxlarge{
font-size: 95px;
letter-spacing: -3px;
line-height: 95px;
}
.netatmo{
.bubbles{
.module{
.name{
text-align: left;
}
.primary, .secondary, .data{
text-align: left;
}
.primary{}
.secondary{
text-align: center;
width: 5em;
.CO2{
.visual{
border-radius: 1em;
box-shadow: 0 0 .9em 1em;
height: .1em;
margin: 1.5em auto;
width: .1em;
}
.good{
background-color: @good;
color: @good;
}
.average{
background-color: @average;
color: @average;
}
.bad{
background-color: @bad;
color: @bad;
}
}
.WindAngle{
.visual{
//margin: .4em;
display: inline-block;
}
}
}
.data{
width: 8em;
.flash {
animation: flasher 1s linear infinite;
}
@keyframes flasher {
50% { opacity: 0; }
}
}
}
}
}