-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (65 loc) · 1.31 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
body {
background-image: url("images/defeault.jpeg");
/* background-size: cover; */
background-repeat: no-repeat;
color: #fff;
text-shadow: 2px 2px 1px #000;
font-family: "Palatino Linotype", "book Antiqua", serif;
background-position: center center;
}
#weatherContainer {
background-color: rgba(0,0,0,0.25);
box-shadow: 1px 1px 5px;
padding: 50px;
border-radius: 10px;
position: absolute;
visibility: hidden;
}
#weatherContainer h1 {
margin: 5px;
font-size: 42px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif
}
#searchContainer {
padding: 15px;
position: absolute;
top:0;
right:0;
}
#searchContinaer input {
width: 200px;
border: none;
}
#searchContainer button {
background-color: rgb(1, 159,198)
}
.searchControl {
box-shadow: 2px 2px 5px black;
border:none;
border-radius: 5px;
padding: 5px;
}
#weatherMain {
display:block;
margin-bottom: 20px;
}
#weatherMain div {
display: inline-block;
vertical-align: 50%;
}
#weatherDescriptionHeader {
font-size: 28px;
/* vertical-align: 50%; */
}
#temperature {
font-size: 38px;
vertical-align: 25%;
}
.bottomDetails {
display: block;
font-size: 24px;
text-align: right;
}
hr {
margin-bottom: 20px;
}