-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.css
48 lines (47 loc) · 924 Bytes
/
api.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
body{
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Poppins";
color: #fff;
background: #343434;
}
.container{
width: 26%;
}
.card{
border-radius: 50px;
background: #343434;
box-shadow: 5px 5px 10px #1e1e1e, -5px -5px 10px #595959;
padding: 3%;
text-align: center;
}
.card h4{
font-size: 4rem;
font-weight: 400;
margin: 1rem 0;
}
img #icon{
width: 20%;
}
h6 #weather{
text-transform: capitalize;
}
button.refresh{
display: block;
width: 100px;
margin: 10px auto;
background: transparent;
border: 0;
color: #9c9c9d;
font-size: 30px;
height: 100px;
border-radius: 50%;
box-shadow: 10px 10px 20px #1e1e1e, -10px -10px 20px #595959;
}
button.refresh:hover{
box-shadow: inset 10px 10px 20px #1e1e1e, inset -10px -10px 20px #595959;
}