Zum Inhalt springen

Vorlage:Zeitungsseite/styles.css

Aus Simulakrum
.newspaper-page {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: flex-start;
}

.newspaper-col {
  flex: 1 1 0;
}

.newspaper-col.left {
  /* Optional etwas breiter für „Leitartikel“-Spalte */
  flex: 1.1 1 0;
}

.newspaper-col.right {
  flex: 0.9 1 0;
}

/* Optional: schmale Trennlinie zwischen den Spalten */
.newspaper-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}