-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpokemon.css
More file actions
49 lines (46 loc) · 847 Bytes
/
pokemon.css
File metadata and controls
49 lines (46 loc) · 847 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
.body{
display : flex;
justify-content: center;
align-items : center;
font-family : "Roboto";
}
.outerRectangle{
height : 450px;
width : 312px;
border-radius: 15px;
background-color: #efbb41;
display : flex;
justify-content: center;
align-items : center;
}
.rectangle{
height : 422px;
width : 262px;
border-radius : 15px;
background-color: #ffff8a;
padding-left : 15px;
padding-right : 15px;
}
.top{
display : flex;
justify-content : space-between;
align-items : center;
}
#numSize {
font-size: 32px;
font-weight: bold;
}
#hpSize{
font-size : 12px;
}
.image-center{
display : flex;
justify-content : center;
}
img {
border-radius : 15px;
transition: box-shadow 0.3s ease;
}
img:hover {
box-shadow: 0 4px 15px rgba(118, 110, 21, 0.3);
}