Tim (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: @media only screen and (max-width: 600px) { table.table { float:none; } }“) |
Tim (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 4: | Zeile 4: | ||
float:none; | float:none; | ||
} | } | ||
} | |||
.infobox { | |||
border: 1px solid #a2a9b1; | |||
background-color: #f8f9fa; | |||
width: 22em; | |||
padding: 0.5em; | |||
font-size: 95%; | |||
line-height: 1.5em; | |||
} | |||
.infobox-title { | |||
font-size: 120%; | |||
font-weight: bold; | |||
padding-bottom: 0.5em; | |||
text-align: center; | |||
} | |||
.infobox-row { | |||
display: flex; | |||
margin: 0.2em 0; | |||
} | |||
.infobox-label { | |||
flex: 1; | |||
font-weight: bold; | |||
} | |||
.infobox-data { | |||
flex: 2; | |||
} | } |
Version vom 16. Juli 2024, 20:50 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@media only screen and (max-width: 600px) {
table.table {
float:none;
}
}
.infobox {
border: 1px solid #a2a9b1;
background-color: #f8f9fa;
width: 22em;
padding: 0.5em;
font-size: 95%;
line-height: 1.5em;
}
.infobox-title {
font-size: 120%;
font-weight: bold;
padding-bottom: 0.5em;
text-align: center;
}
.infobox-row {
display: flex;
margin: 0.2em 0;
}
.infobox-label {
flex: 1;
font-weight: bold;
}
.infobox-data {
flex: 2;
}