-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (42 loc) · 804 Bytes
/
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
body{
margin: 0;
padding: 0;
background-image: url("./image/default.jpg");
background-repeat: no-repeat;
color: white;
text-shadow: 2px 1px 1px black;
}
.weathercontain{
background-color: rgb(0,0,0,0.25);
box-shadow: 1px 1px 5px black;
padding: 50px;
border-radius: 10px;
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-70%);
visibility: hidden;
margin-top: 50px;
}
.serachcontainer{
text-align: center;
}
.search{
width: 500px;
position: absolute;
text-align: center;
top: 20%;
left:50%;
transform: translate(-50%,-50%);
}
.hr {
display: block;
height: 2px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
#temperture{
font-size: 30px;
}