Wechseln zu:Navigation, Suche
Wiki
.Voraussetzungen li {
  margin-bottom: 15px;
  }

.flexbox {
  width: 100%;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  }

.flexelement {
  width:33%;
  }

.grid-box {
  display:grid;
  grid-template-columns: 24% 24% 24% 24%;
  }

.gallery-header {
    font-size: 22px;
    font-style: italic;
    }

.mw-collapsible-toggle {
	color:red;
	display: inline-block;
	background: #3c3f46;
	border: 0px solid #3c3f46;
	border-radius:0px;
	padding: 2px 4px;
	color: white;
	font-size:100%;
	text-align:left;
	float:right!important;
	}

	

/*** Formatierungen für Mobil-Geräte ***/

@media (max-width: 900px) {
.flexelement {
  width:100%;
  }

.grid-box {
  display:grid;
  grid-template-columns: 98%;
  }

} /*  Ende Formatierungen für Mobil-Geräte */