MediaWiki:Vorlage Fortsetzung.css: Unterschied zwischen den Versionen

Aus ZUM-Unterrichten
(Die Seite wurde neu angelegt: „ →‎* Vorlage:Fortsetzung: .zum-fortsetzung { display: grid; grid-template-areas: "titel titel titel" "vorher übersicht weiter"; grid-auto-columns: 1fr; } .zum-fortsetzung--titel { grid-area: titel; } .zum-fortsetzung--vorher { grid-area: vorher; margin-inline-end: auto; } .zum-fortsetzung--\übersicht { grid-area: \übersicht; margin-inline:auto; } .zum-fortsetzung--weiter { grid-area: weiter; margin-inline-start: a…“)
 
(kein Unterschied)

Aktuelle Version vom 18. Februar 2024, 20:12 Uhr

/*
 * Vorlage:Fortsetzung
 */
.zum-fortsetzung {
  display: grid;
  grid-template-areas: 
    "titel  titel     titel"
    "vorher übersicht weiter";
  grid-auto-columns: 1fr;
}
.zum-fortsetzung--titel {
  grid-area: titel;
}
.zum-fortsetzung--vorher {
  grid-area: vorher;
  margin-inline-end: auto;
}
.zum-fortsetzung--\übersicht {
  grid-area: bersicht;
  margin-inline:auto;
}
.zum-fortsetzung--weiter {
  grid-area: weiter;
  margin-inline-start: auto;
}