KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/*** Allgemeine Formatierungen ***/ | |||
.magnify { | |||
display: none; | |||
} | |||
.thumbinner { | |||
border: 0px solid white; | |||
padding: 0px; | |||
background-color: white; | |||
font-size: 94%; | |||
text-align: center; | |||
overflow: hidden; | |||
} | |||
/*** Formatierungen für Monitore ***/ | /*** Formatierungen für Monitore ***/ | ||
| Zeile 20: | Zeile 35: | ||
} | } | ||
Version vom 21. Mai 2019, 14:09 Uhr
/*** Allgemeine Formatierungen ***/
.magnify {
display: none;
}
.thumbinner {
border: 0px solid white;
padding: 0px;
background-color: white;
font-size: 94%;
text-align: center;
overflow: hidden;
}
/*** Formatierungen für Monitore ***/
@media (min-width:901px) {
.grid-box {
display:grid;
grid-template-columns: 50% 50%;
}
.box-01 {
background: red;
}
.box-02 {
background: green;
}
.box-03 {
background: rgb(58, 135, 173);
}
} /* Ende Formatierungen für Monitore */
/*** Formatierungen für Mobil-Geräte ***/
@media (max-width: 900px) {
.grid-box {
display:grid;
grid-template-columns: 98%;
}
.box-01 {
background: yellow;
}
.box-02 {
background: lightblue;
}
.box-03 {
background:#ef8b80;
}
} /* Ende Formatierungen für Mobil-Geräte */