#001 Bisasam

Bisasam – Pokédex body { font-family: Arial, sans-serif; background: #f5f5f5; margin: 20px; } .container { max-width: 900px; margin: auto; background: white; padding: 20px; border-radius: 10px; } .header { display: flex; align-items: center; gap: 20px; } .header img { width: 150px; } .info-boxes { display: flex; gap: 20px; margin-top: 10px; } .box { background: #eee; padding: 10px; border-radius: 8px; text-align: center; flex: 1; } .types span { padding: 4px 8px; border-radius: 6px; color: white; font-size: 12px; } .plant { background: green; } .poison { background: purple; }
.habitats {
  margin-top: 30px;
}
.habitat-card {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}
.habitat-card img {
  width: 100%;
  border-radius: 8px;
}
.title {
  font-weight: bold;
  margin-top: 5px;
}
Bisasam

Bisasam

Pokopia-Pokédexnummer: #001

  <div class="info-boxes">
    <div class="box">
      <strong>Größe</strong><br>
      0.7 m
    </div>
    <div class="box">
      <strong>Gewicht</strong><br>
      6.9 kg
    </div>
    <div class="box types">
      <strong>Typ</strong><br>
      <span class="plant">PFL</span>
      <span class="poison">GIFT</span>
    </div>
  </div>
</div>

Habitate

<div class="habitat-card">
  <img src="habitat1.png" alt="Grünes Gras">
  <p class="title">#001 – Grünes Gras</p>
  <p>⭐ Häufig</p>
  <p>☀️ 🌤️ 🌅 🌙</p>
  <p>🌦️ ☁️ 🌧️</p>
  <p><strong>Gebiete:</strong> Welkwüste ✔️</p>
</div>

<div class="habitat-card">
  <img src="habitat2.png" alt="Bank im Grünen">
  <p class="title">#022 – Bank im Grünen</p>
  <p>⭐ Häufig</p>
  <p>☀️ 🌤️ 🌅 🌙</p>
  <p>🌦️ ☁️ 🌧️</p>
  <p><strong>Gebiete:</strong> Welkwüste ✔️</p>
</div>