-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (77 loc) · 1.49 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
*{
padding: 0px;
margin: 0px;
font-family: "Poppins", sans-serif;
}
body{
background-color: #222;
}
.card{
width: 90%;
max-width: 470px;
background: linear-gradient(45deg, #00feba , #5b548a);
color: #fff;
text-align: center;
margin: 70px auto 0;
padding: 35px 35px;
border-radius: 20px;
}.search{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}.search input{
border: 0;
outline: 0;
width: 100%;
padding: 12px 15px;
border-radius: 20px;
color: #555;
background: #ebfffc;
margin-right: 10px;
}.search button{
border: 0;
outline: 0;
color: #555;
background: #ebfffc;
border-radius: 50%;
/* width: 100%; */
width: 58px;
height: 47px;
cursor: pointer;
}.search button img{
width: 16px;
color: #555;
}.weather {
margin: 30px auto;
}
.weather img{
width: 155px;
}.weather h1{
font-size: 35px;
}.weather h3{
font-size: 25px;
}.detials{
display: flex;
align-items: center;
justify-content: space-between;
}.col{
display: flex;
align-items: center;
text-align: center;
}.col img{
width: 40px;
margin-right: 10px;
}.humidity , .wind {
font-size: 15px;
margin-top: -6px;
}
.weather-detials{
display: none;
}.error{
text-align: left;
font-size: 14px;
margin-left: 10px;
margin-top: 12px;
display: none;
}