Vorlage:ÜbersichtLYR/styles.css

Aus CMO
/* Übersichtstabelle für Lyrik-Bände */
.übersichtlyr {
  width: 100%;
  margin: 1em 0 0.8em 0;   /* bündig, nicht zentriert */
  border-collapse: collapse;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 100%;
  color: #333;
  text-align: left;
}

.übersichtlyr td,
.übersichtlyr th {
  border: 1px solid #aaa;
  padding: 0.4em 0.6em;
  vertical-align: top;
}

/* Kopfzeile – Werkgruppe und Bandtitel */
.übersichtlyr tr:first-child td,
.übersichtlyr tr:first-child th {
  background: #f7f7f7;
  font-size: 95%;
  color: #555;
  padding-left: 2em;       /* leichte Einrückung */
}

/* Mobil: volle Breite + kleinere Schrift + kompakteres Padding */
@media (max-width: 600px) {
  .übersichtlyr {
    width: 100%;
  }
  .übersichtlyr td,
  .übersichtlyr th {
    padding: .25em; /* halbiertes Padding */
  }
  .übersichtlyr tr:first-child td,
  .übersichtlyr tr:first-child th {
    font-size: 80%;
  }
  .übersichtlyr tr:last-child td,
  .übersichtlyr tr:last-child th {
    font-size: 70%;
  }
}

/* Links in der Übersicht: blasseres, ruhiges Blau */
.übersichtlyr a,
.übersichtlyr a:link {
  color: #6c8cc6;          /* weiches, helleres Blau */
  text-decoration: none;
}

.übersichtlyr a:visited {
  color: #7a7fb0;          /* leicht violett getönt, aber zurückhaltend */
}

.übersichtlyr a:hover {
  color: #3b5e9a;          /* sanft dunkler beim Hover */
  text-decoration: underline;
}

/* aktueller Artikel (Selflink) */
.übersichtlyr .mw-selflink,
.übersichtlyr strong.selflink {
  color: #555;             /* blasseres Grau statt Schwarz */
  font-weight: bold;       /* Hervorhebung, aber nicht dominant */
  text-decoration: none;
  cursor: default;
}