-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (102 loc) · 1.81 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body {
background: #111;
background: linear-gradient(135deg, #00feba, #5b548a) no-repeat;
height: 100vh;
overflow: hidden;
}
.card {
width: 90%;
max-width: 400px;
background-color: #6666661d;
backdrop-filter: blur(1px);
border: 1px solid #ccc;
color: #fff;
text-align: center;
border-radius: 20px;
padding: 40px 35px;
margin: 100px auto 0;
}
.card .search input {
border: none;
outline: none;
padding: 10px 15px;
border-radius: 20px;
flex: 1;
margin-right: 16px;
border: 1px solid #f1f1f1;
background:transparent;
color: #f1f1f1;
}
.card .search {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.weather .weatherIcon{
height: 130px;
width: 130px;
}
.weather .city{
margin-top: 10px;
}
.weather h1 {
margin-top: -10px;
font-size: 50px;
font-weight: 200;
}
.weather h2 {
font-size: 20px;
font-weight: 300;
}
.weather .tempMaxMin {
font-size: 15px;
font-weight: 300;
}
.description{
font-style: italic;
font-size: 20px;
font-weight: 400;
margin-top: 10px;
}
.card .search button {
border-radius: 50%;
border: none;
outline: none;
padding: 10px 13px;
cursor: pointer;
}
.details {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
margin-top: 50px;
}
.col {
display: flex;
align-items: center;
text-align: left;
}
.col div {
margin-left: 5px;
font-size: 12px;
font-weight: 300;
}
.col .humidity {
font-size: 15px;
}
.col .wind {
font-size: 15px;
}
footer{
text-align: center;
margin-top: 50px;
color: #f1f1f1;
}