-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (58 loc) · 951 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
50
51
52
53
54
55
56
57
58
body{
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
background-color: skyblue;
}
.source{
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(206, 236, 246);
}
button{
width: 70px;
height: 35px;
border-radius: 4px;
border: none;
outline: none;
font-size: 18px;
background-color: rgb(191, 235, 250);
margin-top: 2px;
margin-inline: 9px;
}
::placeholder{
color: black;
}
#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: #fff;
}
img{
width: 210px;
margin-top: -22px;
}