Files
pokedex/school-pokedex/styles.css

33 lines
516 B
CSS

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f0f0f0;
}
h1 {
text-align: center;
}
#pokemon-list, #admin-pokemon-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.pokemon-card {
background-color: white;
border: 1px solid #ccc;
border-radius: 8px;
margin: 10px;
padding: 10px;
width: 200px;
text-align: center;
}
.pokemon-card img {
max-width: 100%;
height: auto;
border-radius: 8px;
}