Weather.less
1.21 KB
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
.wev-weather-curr{
background-color: var(--themeColor);
overflow: hidden;
text-align: left;
padding: 10px 20px;
}
.wev-weather-curr img{
display: inline-block;
width: 50px;
height: 50px;
margin-right: 15px;
float: left;
-webkit-filter: invert(100%);
filter: invert(100%);
}
.wev-weather-curr span{
width: 100%;
text-align: left;
color: white;
display: block;
}
.wev-weather-curr span:nth-child(1){
margin-top: 5px;
font-size: 20 * @hd;
font-weight: bold;
}
.wev-weather-next{
padding:10px 0;
width: 33.33%;
float: left;
text-align: center;
background: #fff;
display: none;
}
.wev-weather-next span{
display: block;
color: #999;
font-weight: bold;
}
.wev-weather-next span:first-child{
text-transform: uppercase;
font-size: @font-size-base;
text-align: center;
}
.wev-weather-next span:last-child{
font-size: @font-size-sm;
}
.wev-weather-next img{
margin: 3px;
-webkit-filter: invert(60%);
filter: invert(60%);
width: 30px;
height: 30px;
}
.wev-weather-next:first-child span{
color: #4c4c4c;
}
.wev-weather-next:first-child img{
-webkit-filter: invert(35%);
filter: invert(35%);
}