-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (61 loc) · 1.06 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
body,
html {
height: 100%;
width: 100%;
}
body {
font-family: 'Roboto', sans-serif;
color: #fff;
background: linear-gradient(to left, #78909c, #424242, #000);
}
.footer {
background: #000;
height: auto;
text-align: center;
}
.nav-wrapper {
font-size: 2em;
background-color: #ff6f00;
}
.headline {
font-size: 1.75em;
text-align: center;
margin-top: 0.5em;
padding: 0px 30px;
font-weight: 700;
font-family: 'Lato', sans-serif;
}
.weather-info {
text-align: center;
}
.animated-icon {
width: 200px;
height: 200px;
margin-bottom: 2em;
}
.weather-info-text {
text-align: center;
font-size: 2.5em;
margin-top: 0.8em;
margin-bottom: 2.3em;
}
.search-weather {
background-color: #ff6f00;
color: #fff;
text-align: left;
margin: 15px auto 0;
padding: 5px 15px;
bottom: 0;
}
.search-weather h3 {
color: #fff;
font-weight: 400;
}
.hidden {
display: none;
}
@media screen and (max-width: 1050px) {
input[type="search"] {
width: 100%;
}
}