24 lines
349 B
CSS
24 lines
349 B
CSS
.pokemon-card {
|
|
cursor: pointer;
|
|
transition: transform 0.15s ease-in-out;
|
|
}
|
|
|
|
.pokemon-card:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.small-card {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.pokemon-selector {
|
|
height:100%;
|
|
overflow: hidden;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5% / 3.5%;
|
|
}
|
|
|
|
.pokemon-grid {
|
|
height: 90%;
|
|
}
|