Add initial implementation of Pokédex web application with HTML, CSS, JavaScript, and PHP backend

This commit is contained in:
vista-man
2025-03-11 13:52:23 +01:00
parent 2474c2527a
commit 59643b91c2
11 changed files with 443 additions and 3 deletions

32
school-pokedex/styles.css Normal file
View File

@@ -0,0 +1,32 @@
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;
}