-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (106 loc) · 1.79 KB
/
styles.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
font-family: arial, sans-serif;
background-image: url("background.jpg");
}
h1 {
color: #5f72bd;
font-size: 50px;
font-weight: 400;
line-height: 28px;
margin: 20px;
}
h5 {
color: #5f72bd;
font-size: 30px;
font-weight: 100;
line-height: 28px;
margin-bottom: 0;
z-index: 1;
}
ul {
margin: 10px;
padding: 0;
text-align: left;
}
li {
list-style: none;
margin: 10px;
padding: 0;
color: rgb(135, 135, 135);
font-size: 16px;
font-weight: 100;
line-height: 19px;
text-align: left;
}
li:first-letter {
text-transform: capitalize;
}
.weather-app-wrapper {
max-width: 800px;
margin: 20px auto;
}
.weather-app {
padding: 40px;
border: 5px solid #dadde1;
border-radius: 15px;
background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}
a {
color: #5f72bd;
}
a:hover {
color: rgb(218, 123, 123);
}
.overview {
margin-bottom: 30px;
}
.weather-temperature img {
margin-right: 5px;
height: 200px;
width: 200px;
}
.weather-temperature strong {
color: rgb(218, 123, 123);
font-size: 64px;
line-height: 2;
font-weight: 500;
}
.weather-temperature .units {
position: relative;
font-size: 20px;
top: -34px;
}
.weather-temperature .active {
color: rgb(186, 186, 186)
cursor: default;
}
.weather-temperature .active:hover {
text-decoration: none;
}
.weather-forecast {
margin-top: 20px;
}
.weather-forecast h3 {
color: #5f72bd;
font-size: 18px;
font-weight: 20;
text-align: center;
height: 15px;
line-height: 15px;
padding-top: 0;
}
.weather-forecast img {
display: block;
margin: 0 auto;
height: 50px;
width: 50px;
}
.weather-forecast-temperature {
text-align: center;
color: rgb(135, 135, 135);
font-size: 13px;
font-weight: 400;
height: auto;
line-height: 15px;
white-space: nowrap;
}