-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (109 loc) · 2.03 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (109 loc) · 2.03 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background:url(https://wallpaper.dog/large/10959845.jpg);
background-size: cover;
background-repeat: no-repeat;
height: 85vh;
}
.card{
width: 95%;
max-width: 420px;
margin: 100px auto 0;
background:rgba(53, 83, 93, 0.077);
color: #fff;
padding: 20px 15px;
border: 1px white solid;
border-radius: 35px;
backdrop-filter: blur(5px);
}
.error img{
margin-top: 30px;
width: 100%;
}
.error{
display: none;
}
.error h1{
text-align: center;
border: 1px solid white;
padding: 5px;
background-color: rgba(255, 0, 0, 0.31);
border-radius: 30px;
}
.info{
display: none;
}
.search{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
.search input{
border: 1px white solid;
background-color: rgba(216, 132, 255, 0.137);
color: #ffffff;
backdrop-filter: blur(5px);
padding: 10px 15px;
height: 45px;
flex:1;
border-radius: 30px;
font-weight: 600;
margin-right:16px ;
}
input::placeholder{
color: #9de5ed;
letter-spacing: 2px;
font-weight: 200;
font-size: 15px;
}
button{
color: #ffffff;
height: 45px;
width: 46px;
background-color: transparent;
border-radius:50px;
border: 1px white solid;
font-size: 18px;
cursor: pointer;
}
.weather{
font-size: 25px;
text-align: center;
}
.weather img{
height: 9rem;
margin-top:30px;
}
.city{
font-size: 25px;
}
.weather-details{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
margin-top: 20px ;
}
.col{
margin-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 20px;
}
.Humidity-info{
margin-left: 10px;
}
.wind-info{
margin-left: 10px;
}
i{
font-size: 30px;
}