-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.css
63 lines (63 loc) · 1.14 KB
/
weather.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
body{
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-size: cover;
background-position: center;
}
.srh{
display: flex;
margin-top: 11px;
}
input{
width: 200px;
padding: 16px;
border-radius: 16px;
height: 8px;
border: none;
outline: none;
font-size: 19px;
background-color: rgb(1, 43, 65);
color:#ffffff;
}
button{
width: 70px;
height: 35px;
border-radius: 4px;
border: none;
outline: none;
font-size: 18px;
background-color: rgb(0, 53, 69);
margin-top: 2px;
margin-inline: 9px;
color:#ffffff;
}
::placeholder{
color: rgb(255, 255, 255);
}
#city{
margin-top: 33px;
font-size: 33px;
}
#temp{
font-size: 40px;
margin-top: -13px;
}
#type{
font-size: 26px;
margin-top: -33px;
}
.container{
width: 300px;
padding: 22px;
text-align: center;
border-radius: 5px;
margin-top: 2%;
background-color: #ffffff;
}
img{
width: 210px;
margin-top: -22px;
}