-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweather.css
106 lines (80 loc) · 1.43 KB
/
weather.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
body{
display: flex;
justify-content: center ;
align-items: center;
height: 100vh;
margin: 0;
background: #7FFFD4;
background-image: url("https://images.pexels.com/photos/1035098/pexels-photo-1035098.jpeg?auto=compress&cs=tinysrgb&w=1300");
}
#card{
background-color: rgb(0, 0, 0);
color: floralwhite;
padding: 2em;
border-radius: 30px;
max-width: 420px;
width: 100%;
font-family: sans-serif;
}
#search{
display: flex;
align-items: center;
justify-content: center;
}
button{
margin: 0.5em;
border-radius: 50px;
outline: none;
border: none;
width: 2.5em;
height: 2.5em;
}
#searchbutton{
height:44px ;
width: 44px;
border-radius: 54%;
background: rgb(60,50,60);
color: white;
transition: 0.2s;
cursor: pointer;
border-color: snow
}
#searchbutton:hover{
background: #000000
}
#myinput{
padding: 0.4em 1em;
background-color: rgb(10,20,20);
border-radius: 26px;
border: none;
outline: none;
height: 30px;
width: calc(100% - 40%);
font-family: inherit;
font-size: 90%;
border-left-width: 20px;
color: floralwhite;
}
.temp{
margin: 0;
margin-bottom: 0.5em;
}
.description{
text-transform: capitalize;
margin-left: 8px;
}
.icons{
display: flex;
align-items: center;
}
.Loading{
visibility: hidden;
font-family: cursive;
}
.loading{
visibility: hidden;
max-height: 20px;
position: relative;
color: white;
content: "loading";
}