Vorlage:ÜbersichtLYR/styles.css: Unterschied zwischen den Versionen

Aus CMO
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 46: Zeile 46:
}
}


/* Links in der Übersicht: dezenteres Blau */
/* Links in der Übersicht: blasseres, ruhiges Blau */
.übersichtlyr a,
.übersichtlyr a,
.übersichtlyr a:link {
.übersichtlyr a:link {
   color: #4a6ea9;          /* etwas grauer, weniger Sättigung als Standard */
   color: #6c8cc6;          /* weiches, helleres Blau */
   text-decoration: none;
   text-decoration: none;
}
}


.übersichtlyr a:visited {
.übersichtlyr a:visited {
   color: #5a6194;          /* leicht gedämpftes Violett für besuchte Links */
   color: #7a7fb0;          /* leicht violett getönt, aber zurückhaltend */
}
}


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


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

Version vom 20. Oktober 2025, 01:13 Uhr

/* Ü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;
}