KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 29: | Zeile 29: | ||
.grid-box { | .grid-box { | ||
display:grid; | display:grid; | ||
grid-template-columns: | grid-template-columns: 33% 33% 33%; | ||
} | } | ||
Version vom 8. November 2019, 07:38 Uhr
/*** Allgemeine Formatierungen ***/
.magnify {
display: none;
}
.thumbinner {
border: 0px solid white;
padding: 0px;
background-color: white;
font-size: 94%;
text-align: center;
overflow: hidden;
}
.thumbimage {
background-color: #fff;
border: 0px solid white;
}
.tright {
margin: 0px;
}
/*** Formatierungen für Monitore ***/
@media (min-width:601px) {
.grid-box {
display:grid;
grid-template-columns: 33% 33% 33%;
}
.logo-made {
width: 150px;
float: right;
margin-left: 50px;
}
} /* Ende Formatierungen für Monitore */
/*** Formatierungen für Mobil-Geräte ***/
@media (max-width: 600px) {
.grid-box {
display:grid;
grid-template-columns: 98%;
}
.logo-made {
width: 50%;
}
} /* Ende Formatierungen für Mobil-Geräte */