-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (69 loc) · 1.08 KB
/
style.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
body {
font-family: arial, sans-serif;
}
.weather-app-wrapper {
max-width: 600px;
margin: 30px auto;
}
.weather-app {
padding: 20px;
border: 1px solid #dadde1;
border-radius: 5px;
}
.overview {
margin-bottom: 20px;
}
h1 {
color: #878787;
font-size: 24px;
font-weight: 100;
line-height: 28px;
margin-bottom: 0;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style: none;
margin: 0;
padding: 0;
color: rgb(135, 135, 135);
font-size: 16px;
font-weight: 100;
line-height: 19px;
}
li::first-letter {
text-transform: capitalize;
}
.weather-temperature img {
margin-right: 5px;
height: 84px;
width: 84px;
}
.weather-temperature strong {
color: rgb(33, 33, 33);
font-size: 64px;
font-weight: 400;
line-height: 1;
}
.weather-temperature .units {
position: relative;
font-size: 16px;
top: -34px;
}
.weather-forecast {
margin-top: 20px;
text-align: center;
color: #000;
}
.weather-forecast-date {
font-size: 16px;
opacity: 0.5;
}
.weather-forecast-temperature-min {
opacity: 0.5;
}
.weather-forecast-temperatures {
font-size: 13px;
}