-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.css
More file actions
52 lines (52 loc) · 1022 Bytes
/
api.css
File metadata and controls
52 lines (52 loc) · 1022 Bytes
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
body{
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
color: white;
background-color: #343434;
}
.container{
width: 300px;
}
.card{
border-radius: 50px;
background-color: #343434;
box-shadow: 5px 10px 10px #191b1b, -5px -5px 10px #595959;
padding: 3%;
text-align: center;
color: white;
padding: 20px;
display: block;
align-items: center;
}
.card h4{
font-size: 4rem;
font-weight: 400;
margin: 1rem 0;
}
img{
width: 20%;
align-items: center;
}
h6 #weather{
text-transform: capitalize;
}
button{
display: block;
width: 100px;
height: 100px;
margin: 10px auto;
background-color: transparent;
border: 0;
color: #9c9c9c;
font-size: 30px;
border-radius: 50px;
box-shadow: 10px 5px 10px #252525, 5px 5px 18px #4a4a4a;
}
button:hover{
box-shadow: inset 10px 5px 10px #252525, 5px 5px 18px #4a4a4a;
}