-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathem-weather.css
70 lines (60 loc) · 1.06 KB
/
em-weather.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
body {
font-family: "Roboto Mono", monospace;
color: white;
background: linear-gradient(to top, #3a85ca, #1c4990);
margin: 0;
padding: 4px;
text-align: center;
max-height: 240px;
max-width: 320px;
min-height: 240px;
}
.city {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 26px;
padding: 8px 6px;
border-bottom: 1px solid #ccc;
margin-bottom: 5px;
}
.city span {
font-weight: bold;
font-size: 26px;
}
.weather-card {
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px;
margin-bottom: 15px;
margin: auto;
border-bottom: 1px solid #ccc;
}
.day {
font-size: 22px;
font-weight: bold;
}
.condition-icon {
width: 30px;
height: 30px;
}
.temperature {
display: flex;
align-items: center;
}
.temp-max {
font-size: 26px;
margin-right: 5px;
}
.temp-min {
font-size: 22px;
color: #c1bcbc;
}
.copyright {
margin-top: 5px;
}
.error {
display: flex;
align-items: center;
}