-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (89 loc) · 1.57 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
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url(image1.jpg);
background-size: cover;
}
.card{
background-color: rgba(0,0,0,0.85);
padding: 2em;
padding-bottom: 1em;
border-radius: 2em;
width: 100%;
max-width: 40%;
margin: 1em;
font-family: 'Open Sans Condensed', sans-serif;
color: white;
}
.icon{
padding: 0;
margin:0;
height: 50px;
width: 50px;
}
.search{
display: flex;
align-items: center;
justify-content: center;
border: none;
outline: none;
}
.input{
padding: 0.8em;
border-radius: 20px;
height: 0.8em;
width: 60%;
color: white;
font-family: 'Open Sans Condensed', sans-serif;
font-size:1.2em;
border: none;
outline: none;
background-color: rgb(22, 22, 22);
}
.search>button{
margin: 1em;
border-radius:50%;
height: 3.5em;
width: 3.5em;
border: none;
outline: none;
background-color: rgb(22, 22, 22);
color: white;
cursor: pointer;
transition: 0.4s ;
}
.button:hover{
background-color: rgb(75, 75, 75);
}
.temp{
margin:0.2em;
font-size: 35px;
}
.city{
font-size: 30px;
padding-bottom: 0;
}
#style{
margin: 0.3em;
font-size: 20px;
font-weight: 400;
}
.info{
display: flex;
align-items: center;
}
.loading{
visibility: hidden;
max-height: 20px;
position: relative;
}
.loading:after{
visibility:visible;
content: "Loading...";
color: white;
position: absolute;
top:0;
}