KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
@media (min-width: | @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, 09: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;
}
}