HF/Jim: Difference between revisions

From Illustrations in German Translations of Mark Twain's Works

No edit summary
No edit summary
Tag: Reverted
Line 58: Line 58:
     display: none;
     display: none;
   }
   }
/* Slideshow Row – sorgt dafür, dass die Boxen nebeneinander stehen */
.slideshow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Abstand zwischen den Boxen */
  justify-content: flex-start;
  margin-bottom: 30px;
}
/* Slideshow Box – Rahmen, Hintergrund, Padding */
.slideshow-box {
  flex: 1 1 45%; /* zwei Boxen pro Reihe, flexibel */
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
/* Slideshow Container – Bild wird skaliert */
.slideshow-container {
  width: 100%;
  height: 400px; /* feste Höhe für alle Slideshows */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* schwarzer Hintergrund für Bildrahmen */
  border-radius: 5px;
  margin-top: 10px;
}
.slideshow-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Dropdown – Illustrator Auswahl */
.slideshow-box select {
  width: 90%;
  padding: 5px;
  margin-top: 5px;
  font-size: 14px;
}
/* Button Row – Navigation */
.gallery-button-row {
  margin-top: 10px;
}
.gallery-button-row button {
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #888;
  border-radius: 4px;
  background-color: #eee;
}
.gallery-button-row button:hover {
  background-color: #ddd;
}
</style>
</style>



Revision as of 23:03, 2 September 2025