-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyle.css
94 lines (80 loc) · 1.31 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
body {
background: #12151A;
color: #e2e2e2;
margin: 0;
font-family: rubik;
}
.container {
padding: 40px;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 54px;
}
h2 {
margin-bottom: -0.4em;
}
.pokedex {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-gap: 20px;
padding-inline-start: 0;
}
.card {
list-style: none;
padding: 40px;
text-align: center;
border-radius: 15px;
position: relative;
background-color: #1A1D20;
border: .3rem solid var(--type-color);
}
.card::after {
content: "";
display: block;
width: 40%;
height: 35%;
border-radius: 58% 42% 64% 36% / 47% 45% 55% 53%;
background-color: var(--type-color);
position: absolute;
top: 25%;
left: 30%;
}
.card:hover {
animation: bounce 0.5s linear;
}
.card-title {
text-transform: capitalize;
margin-bottom: 0px;
font-size: 32px;
font-weight: normal;
position: relative;
z-index: 2;
}
.card-subtitle {
margin-top: 5px;
color: #666;
font-weight: lighter;
position: relative;
z-index: 2;
}
.card-image {
height: 180px;
position: relative;
z-index: 2;
}
@keyframes bounce {
20% {
transform: translateY(-6px);
}
40% {
transform: translateY(0px);
}
80% {
transform: translateY(-2px);
}
100% {
transform: translateY(0);
}
}