Spaces:
Running
Running
File size: 1,290 Bytes
81aeb85 699c7e9 81aeb85 699c7e9 81aeb85 699c7e9 81aeb85 699c7e9 81aeb85 699c7e9 81aeb85 699c7e9 |
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 |
body {
margin: 0;
padding: 0;
font-family: 'Press Start 2P', cursive;
background-color: #f0f0f0;
}
.pokedex {
display: flex;
width: 800px;
height: 600px;
margin: 20px auto;
background-color: #d32f2f; /* Red like the original Pokédex */
border: 10px solid #b71c1c;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
/* List Container */
.list-container {
width: 40%;
background-color: #fff;
border-right: 5px solid #000;
overflow-y: auto;
}
#pokemon-list {
list-style: none;
padding: 10px;
margin: 0;
}
#pokemon-list li {
cursor: pointer;
padding: 8px;
font-size: 12px;
text-transform: capitalize;
}
#pokemon-list li:hover {
background-color: #eee;
}
/* Display Container */
.display-container {
width: 60%;
display: flex;
justify-content: center;
align-items: center;
background-color: #e0e0e0; /* Light gray "screen" */
border: 10px solid #000;
border-radius: 10px;
margin: 20px;
}
#pokemon-info {
text-align: center;
}
#pokemon-name {
font-size: 16px;
margin: 10px 0;
color: #000;
text-transform: capitalize;
}
#pokemon-sprite {
image-rendering: pixelated;
transform: scale(3);
transform-origin: center;
} |