44 lines
661 B
CSS
44 lines
661 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
body {
|
|
font-family: Arial;
|
|
}
|
|
|
|
div.select_pokedex{
|
|
display: inline-block;
|
|
}
|
|
|
|
div.filter_pokedex{
|
|
display: inline-block;
|
|
}
|
|
|
|
div.pokemon{
|
|
display: inline-block;
|
|
align-items: center;
|
|
margin: 15px
|
|
}
|
|
|
|
div.pokemonTitle{
|
|
display: inline-block;
|
|
font-size: 30px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
div.pokemonDetail{
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
div.pokemonSprite{
|
|
image-rendering: pixelated;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
img{
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
table.sprites{
|
|
border-collapse: collapse;
|
|
}
|