Vorlage:InformationBuch/styles.css

Aus CMO

Version vom 21. November 2025, 01:05 Uhr von UweS (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „Informationsbox für Bücher (an InformationLYR angelehnt): .informationbuch { width: 90%; margin: 1.2em 0 0 0; border-collapse: collapse; border: 1px solid #aaa; border-radius: 6px; font-size: 95%; color: #333; } .informationbuch td, .informationbuch th { border: 1px solid #aaa; padding: 0.25em 0.5em; vertical-align: top; } Labelspalte: .informationbuch td:first-child { background: #f7f7f7; color: #555; font-style: i…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

/* Informationsbox für Bücher (an InformationLYR angelehnt) */
.informationbuch {
  width: 90%;
  margin: 1.2em 0 0 0;
  border-collapse: collapse;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 95%;
  color: #333;
}

.informationbuch td,
.informationbuch th {
  border: 1px solid #aaa;
  padding: 0.25em 0.5em;
  vertical-align: top;
}

/* Labelspalte */
.informationbuch td:first-child {
  background: #f7f7f7;
  color: #555;
  font-style: italic;
  width: 12em;
}

/* Mobil */
@media (max-width: 600px) {
  .informationbuch {
    width: 100%;
  }
  .informationbuch td,
  .informationbuch th {
    padding: 0.2em;
  }
}