forked from bugsounet/MMM-AirParif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-AirParif.css
91 lines (87 loc) · 1.47 KB
/
MMM-AirParif.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
.ville {
color:white;
top:0;
vertical-align: top;
text-align: left;
padding-right: 5px;
font-size: 100%;
}
.table{
text-align: justify;
}
.indiceP{
color:silver;
top:0;
vertical-align: top;
text-align: left;
padding-right: 5px;
font-size : 90%;
}
.indice{
text-align: left;
font-size: 60%;
color : lightsteelblue;
}
.polluants {
text-align: left;
}
.ville:before {
font-family: "weathericons";
content: "\f082";
padding-left: 10px;
padding-right: 10px;
color : floralwhite;
}
.lignePolluant {
font-size: 0.8em;
//text-align : start;
//text-indent : 10%;
color : lightgray;
}
.lignePolluant:before{
font-family: "weathericons";
content: "\f063";
color : white;
padding-left: 5px;
padding-right: 5px;
font-size : 70%;
}
.Bon {
//color: #50f0e6;
font-weight: lighter;
}
.Moyen {
//color: #50ccaa;
font-weight: Medium;
}
.Dégradé{
animation: 3s linear infinite condemed_blink_effect;
//color: #f0e641;
font-weight: Semi Bold;
}
.Mauvais {
animation: 3s linear infinite condemed_blink_effect;
//color: #ff5050;
font-weight: Bold;
}
.TrèsMauvais {
animation: 1s linear infinite condemed_blink_effect;
//color: #960032;
font-weight: Extra Bold;
}
.ExtrêmementMauvais {
animation: 0.3s linear infinite condemed_blink_effect;
//color: #7d2181;
font-weight: Black ;
}
@keyframes condemed_blink_effect {
0% {
visibility: hidden;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}