-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (73 loc) · 1.29 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
body {
padding: 0;
margin: 0;
font-family: Helvetica Neue, Helvetica, Arial;
}
header {
height: 100px;
background-color: lightblue;
text-align: center;
padding-top: 20px;
box-shadow: 3px 3px 3px #ccc;
}
header h1 {
font-size: 40px;
font-weight: bold;
color: dodgerblue;
margin: 0;
}
.main {
text-align: center;
padding-top: 80px;
}
#search {
font-size: 18px;
}
#search label {
font-weight: bold;
}
#search input {
font-size: inherit;
font-family: inherit;
}
#search button {
font-family: inherit;
font-size: inherit;
background-color: dodgerblue;
border: 1px solid dodgerblue;
border-radius: 3px;
cursor: pointer;
color: white;
}
#search button:hover {
background-color: deepskyblue;
}
#weather {
padding: 30px;
border: 1px solid #ccc;
width: 500px;
margin: 100px auto auto;
background-color: deepskyblue;
box-shadow: 2px 2px 3px #ccc;
color: white;
box-sizing: border-box;
display: none;
font-weight: bold;
}
#weather h1 {
font-size: 32px;
margin-top: 0;
margin-bottom: 30px;
}
#weatherDescription {
float: left;
}
#weatherTemperature {
float: right;
}
#load {
padding: 30px;
width: 500px;
margin: 100px auto auto;
display: none;
}