forked from Technigo/js-project-weather-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.2.css
136 lines (111 loc) · 1.97 KB
/
style.2.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body {
font-family: 'Montserrat', sans-serif;
margin: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.cloudy {
background: #F4F7F8;
color: #F47775;
}
.sunny {
background: #F7E9B9;
color: #2A5510;
}
.rainy {
background: #A3DEF7;
color: #164A68;
}
.unknown {
background: #dbf6e9;
color: #31326f;
}
.todays-numbers {
margin-bottom: 30px;
}
p {
font-size: 18px;
margin: 2px;
}
.todays-description h2 {
font-size: 32px;
max-width: 400px;
}
.todays-description img {
height: 70px;
}
.forecast {
width: 100%;
max-width: 400px;
}
.forecast div {
display: flex;
justify-content: space-between;
border-bottom: 1px dashed;
}
footer {
width: 100%;
max-width: 400px;
}
input {
background: #F4F7F8;
height: 20px;
width: 200px;
font-size: 16px;
border: 1px solid;
border-radius: 4px;
padding: 4px 8px;
margin: 30px 0;
}
.cloudy input, .cloudy input::placeholder {
color: #F47775;
}
.rainy input, .rainy input::placeholder {
color: #164A68;
}
.sunny input, .sunny input::placeholder {
color: #2A5510;
border-radius: 4px;
}
button {
color: white;
height: 30px;
font-size: 16px;
border-radius: 4px;
padding: 4px 8px;
border: none;
border-radius: 4px;
}
.cloudy button {
background: #F47775;
}
.rainy button {
background: #164A68;
}
.sunny button {
background: #2A5510;
border-radius: 4px;
}
.error {
font-size: 14px;
}
@media (min-width: 668px) {
.todays-numbers p {
font-size: 20px;
}
.todays-description img {
width: 150px;
}
.todays-description h2 {
font-size: 38px;
max-width: 500px;
}
.forecast {
max-width: 500px;
}
footer {
width: 100%;
max-width: 500px;
}
}