-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (92 loc) · 1.63 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
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
body {
background-image: url(./Assets/sunrise.png);
background-size: cover;
background-repeat: no-repeat;
}
.title {
background-color: #4B3621;
width: 100%;
color: #fffafa;
text-align: center;
padding: 10px 0px;
}
form {
margin-bottom: 10px;
}
.sidebar {
width: 100%;
overflow: auto;
padding-right: 5px;
padding-left: 5px;
}
#city-input {
overflow: hidden;
border-style: solid;
border-color: lightgrey;
border-width: thin;
max-width: 70%;
padding: 0px;
}
#search-box {
padding: inherit;
margin: 0px;
}
#submitted-city {
border-style: solid;
border-color: lightgrey;
border-width: thin;
background-color: royalblue;
}
i {
color: #fffafa;
}
.city-button {
width: 100%;
overflow: hidden;
border-style: solid;
border-color: lightgrey;
border-width: thin;
background-color: whitesmoke;
padding: 10px 20px;
text-align: left;
}
#weather {
clear: left;
}
.current-box {
border-style: solid;
border-color: lightgrey;
border-width: thin;
border-radius: 5px;
padding: 10px 20px;
margin-bottom: 20px;
margin-top: 10px;
}
#uvVal {
padding: 8px;
border-radius: 5px;
}
.low {
background-color: greenyellow;
}
.mod {
background-color: yellow;
}
.high {
background-color: orangered;
}
#eachForecast {
background-color: royalblue;
margin: 10px 20px;
padding: 10px 20px;
border-radius: 5px;
min-width: 150px;
max-width: 20%;
color: #fffafa;
font-size: 1rem;
}
@media only screen and (max-width: 767px) {
#eachForecast {
max-width: 100%;
}
}