MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 60: | Zeile 60: | ||
min-width: 0; /* Verhindert Überlauf */ | min-width: 0; /* Verhindert Überlauf */ | ||
} | } | ||
flex: 1; background-color:#eaecf0; text-align: center; width:100%; | |||
.flex-table-header { | .flex-table-header { | ||
flex: 1; | |||
background-color:#eaecf0; | |||
text-align: center; | |||
width:100%; | |||
font-weight: bold; | font-weight: bold; | ||
border-bottom: 2px solid # | border-bottom: 2px solid #a2a9b1; | ||
} | } | ||
| Zeile 71: | Zeile 73: | ||
flex: 1; | flex: 1; | ||
background-color:#f8f9fa; | background-color:#f8f9fa; | ||
padding | padding: 1rem; | ||
} | } | ||
Version vom 14. April 2025, 07:24 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
a:hover {
color: #15a2d6;
}
a.external:hover {
color: #15a2d6;
}
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
body {
font-family: 'Titillium Web', sans-serif;
}
h1,h2,h3,h4 {
font-family: 'Titillium Web', sans-serif !important;
}
/* Bilder responsive machen*/
.mw-file-element {
max-width: 100% !important;
height: auto !important;
width: auto !important;
}
/* iPhone images */
.img-iphone-style {
float: left !important;
width: 200px !important;
background: none !important;
padding: 1rem !important;
border: 0 !important;
}
/* Container für iphone img mit text */
.flex-step-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
align-items: center;
margin-bottom: 0;
}
/* Flexbox-Tabellenersatz */
.flex-table {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 2em;
border-bottom: 1px solid #ccc;
padding-bottom: 15px;
}
.flex-table-column {
flex: 1 1 200px; /* Basisbreite 200px, wächst/schrinkt */
min-width: 0; /* Verhindert Überlauf */
}
flex: 1; background-color:#eaecf0; text-align: center; width:100%;
.flex-table-header {
flex: 1;
background-color:#eaecf0;
text-align: center;
width:100%;
font-weight: bold;
border-bottom: 2px solid #a2a9b1;
}
.flex-table-content {
flex: 1;
background-color:#f8f9fa;
padding: 1rem;
}
/* Mobile Optimierung */
@media (max-width: 768px) {
.flex-step-container {
gap: 15px; /* Reduzierter Abstand auf kleinen Bildschirmen */
}
.flex-table-column {
flex: 1 1 100% !important;
}
}