MediaWiki:Common.css: Unterschied zwischen den Versionen

Zur Navigation springen Zur Suche springen
keine Bearbeitungszusammenfassung
 
Zeile 1.822: Zeile 1.822:
}
}


}
.kennzeichen {
  --kennzeichen-height: 110px;
  --kennzeichen-width: 520px;
  --balken-width: 60px;
  position: relative;
  display: inline-block;
  height: var(--kennzeichen-height);
  width: var(--kennzeichen-width);
  background: white;
  border: 2px solid black;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: black;
  line-height: var(--kennzeichen-height);
  padding-left: calc(var(--balken-width) + 12px);
  user-select: none;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
}
/* Blauer Balken links mit D */
.kennzeichen::before {
  content: "D";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--balken-width);
  height: 100%;
  background: #003399;
  color: white;
  font-weight: 700;
  font-size: 48px;
  line-height: var(--kennzeichen-height);
  text-align: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  user-select: none;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}
}

Navigationsmenü