KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
Zeile 37: | Zeile 37: | ||
margin-left: 50px; | margin-left: 50px; | ||
} | } | ||
.tile { | |||
/* Äußerer Kasten */ | |||
border: 2px solid #ef8b80; | |||
border-radius: 2px; | |||
width: 95%; | |||
margin-bottom: 10px; | |||
display: inline-block; | |||
} | |||
.tile-icon { | |||
/* Linke Spalte mit Icon */ | |||
padding: 5px; | |||
color: #e74c3c; | |||
display: inline-block; | |||
width: 20%; | |||
vertical-align: top; | |||
font-size: 250%; | |||
} | |||
.tile-rightcol { | |||
/* Rechte Spalte */ | |||
padding: 5px; | |||
display: inline-block; | |||
width: 80%; | |||
} | |||
.tile-rightheader { | |||
/* Rechte Spalte Header */ | |||
color: #e74c3c; | |||
font-weight: bold; | |||
font-size: 120%; | |||
} | |||
.tile-list { | |||
/* Rechte Spalte Liste */ | |||
color:#585858; | |||
font-size: 90%; | |||
margin-left: 20px; | |||
} | |||
.tile-footer { | |||
/* Fußzeile */ | |||
border-top: 2px solid #ef8b80; | |||
background: #f5f5f5; | |||
display: block; | |||
padding: 5px; | |||
color: #E74C3C; | |||
text-align: right; | |||
} | |||
Version vom 22. November 2019, 14:20 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; } .tile { /* Äußerer Kasten */ border: 2px solid #ef8b80; border-radius: 2px; width: 95%; margin-bottom: 10px; display: inline-block; } .tile-icon { /* Linke Spalte mit Icon */ padding: 5px; color: #e74c3c; display: inline-block; width: 20%; vertical-align: top; font-size: 250%; } .tile-rightcol { /* Rechte Spalte */ padding: 5px; display: inline-block; width: 80%; } .tile-rightheader { /* Rechte Spalte Header */ color: #e74c3c; font-weight: bold; font-size: 120%; } .tile-list { /* Rechte Spalte Liste */ color:#585858; font-size: 90%; margin-left: 20px; } .tile-footer { /* Fußzeile */ border-top: 2px solid #ef8b80; background: #f5f5f5; display: block; padding: 5px; color: #E74C3C; text-align: right; } } /* 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 */