forked from GDGC-MET/Weather_App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (88 loc) · 1.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
*{
padding: 0;
margin: 0;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Roboto', sans-serif;
}
body{
background-color: rgb(23, 23, 23);
}
.w-card{
width: 90%;
max-width: 455px;
background: linear-gradient(135deg, rgb(18, 28, 43), rgb(1, 46, 69));
color: white;
margin: 70px auto;
border-radius: 22px;
padding: 44px 38px;
text-align: center;
}
.searchbox{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.searchbox input{
outline: none;
border: none;
background: lightcyan;
padding: 10px 28px;
flex: 1;
font-size: 16px;
border-radius: 28px;
}
button{
border: none;
outline: none;
background: lightcyan;
border-radius: 28px;
padding: 10px 28px;
margin-left: 18px;
cursor: pointer;
transition: 0.3s;
}
button:hover{
background-color: rgb(166, 254, 254);
}
.weather-icon{
width: 200px;
margin-top: 20px;
}
#temp{
font-size: 70px;
font-weight: 500;
}
#city-name{
font-size: 56px;
font-weight: 400;
}
.additional-details{
display: flex;
align-items: center;
justify-content: space-between;
padding: 4px 28px;
margin-top: 45px;
}
.column{
display: flex;
align-items: center;
text-align: left;
}
.column img{
width: 50px;
margin-right: 12px
}
.humidity, .wind{
font-size: 22px;
font-weight: 500;
}
.weather{
display: none;
}
.error{
font-size: 16px;
text-align: left;
margin: 8px 0px;
display: none;
}