-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (42 loc) · 869 Bytes
/
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
body {
display: flex;
justify-content: center;
height: 100vh;
margin: 0;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-image: url(https://source.unsplash.com/1600x900/?nature,water);
background-repeat: no-repeat;
}
.weather-card {
padding: 55px;
color: black;
background-color:lightgray;
opacity: .6;
border-radius: 30px;
width: 100%;
max-width: 300px;
}
.flex {
display: flex;
align-items: center;
}
.search {
display: flex;
justify-content: space-evenly;
}
.search-btn {
border: transparent;
cursor: pointer;
background-color: transparent;
font-size: 20px;
}
.search-inp {
background: transparent;
border: none;
border-bottom: 1px solid sienna;
font-size: 20px;
}
.desc {
text-transform: capitalize;
}