-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (54 loc) · 1.07 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
margin: 0;
background: #222;
font-family: 'open sans', sans-serif;
background-image: url('https:/source.unsplash.com/1600x900/?waterfall');
}
.card {
background: #000000d0;
color: white;
padding: 2em;
border-radius: 25px;
width: 100%;
max-width: 400px;
margin: 1em;
}
.search {
display: flex;
align-items: center;
justify-content: center;
}
.searchBar {
border-radius: 18px;
outline: none;
padding: o.8em;
background-color: #7c7c7c2d;
color: white;
width: calc(100% - 100px);
height: 30px;
}
button {
background-color: #7c7c7c2d;
border-radius: 10px;
color: rgba(255, 255, 255, 0.822);
height: 30px;
}
.description {
text-transform: capitalize;
}
.weather.loading {
visibility: hidden;
}
.weather.loading {
visibility: visible;
content: "Loading....";
color: white;
}
h4 {
margin: 0vh;
font-size: 30px;
}