-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.css
76 lines (76 loc) · 1.23 KB
/
a.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
body{
text-size-adjust: 30px;
background: #5a5b5c ;
}
.card{
background: linear-gradient(#e66465, #9198e5);
height: 350px;
width: 280px;
padding: 80px;
margin: 120px 400px 0 400px;
border-radius: 60px;
text-align: center;
}
.search{
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
}
.search input{
height: 25px;
width: 80%;
padding: 5px;
margin: 5px auto;
text-align: center;
border-radius: 10px;
}
.search button{
height: 25px;
border-radius: 30px;
cursor: pointer;
}
.search button img{
width: 20px;
border-radius: 30px;
}
.weather-icon{
margin: 20px;
width: 80px;
margin-bottom: 10px;
}
.weather h1{
font-size: 25px;
font-weight: 400;
}
.weather h2{
font-size: 20px;
font-weight: 400;
}
.details{
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
}
.col{
display: flex;
align-items: center;
text-align: left;
}
.col img{
width: 60px;
}
.details .col .p{
margin-top: 30px;
}
.weather{
display: none;
}
.error{
margin-top: 10px;
margin-left: 10px;
text-align: center;
font-size: 20px;
display: none;
}