Wechseln zu:Navigation, Suche
Wiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
@media (min-width: 40em) {
@media (min-width:901px) {
.table {  
.table {  
   display: table;
   display: table;
Zeile 5: Zeile 5:
.table-row {display: table-row; }
.table-row {display: table-row; }
.table-cell {display: table-cell; }
.table-cell {display: table-cell; }
.toc {
  float: right;
  margin-left: 50px;
  }
}
@media (max-width: 900px) {
.toctitle {
  padding: 1px;
  }
.toc {
  float: none;
  background-color: yellow;
  }
span {
  text-align: left;
  }
}
}

Version vom 20. Mai 2019, 10:08 Uhr

@media (min-width:901px) {
.table { 
   display: table;
}
.table-row {display: table-row; }
.table-cell {display: table-cell; }

.toc {
  float: right;
  margin-left: 50px;
  }

}

@media (max-width: 900px) {

.toctitle {
  padding: 1px;
  }

.toc {
  float: none;
  background-color: yellow;
  }
span {
  text-align: left;
  }


}