MediaWiki:Common.css: Unterschied zwischen den Versionen
Ares (Diskussion | Beiträge) K (content-wrapper mobile) |
Ares (Diskussion | Beiträge) K (content-wrapper delete font-size) |
||
Zeile 29: | Zeile 29: | ||
.content-wrapper { | .content-wrapper { | ||
overflow-x: auto; | overflow-x: auto; | ||
max-width: 100%; | max-width: 100%; | ||
margin: 0em 1em | margin: 0em 1em 0em 0em; | ||
} | } | ||
Version vom 17. April 2020, 12:16 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*
* Class für die Einheitliche Box (infobox, Tabelle, etc.)
*/
.content-box{
width: 27em;
}
.content-box>tr>th,
.content-box>tr>td,
.content-box>*>tr>th,
.content-box>*>tr>td {
border: 0px solid #eeeeee;
}
@media screen and (max-width: 500px) {
.content-box{
width: 100%;
}
}
/*
* Dieser Wrapper sorgt dafür, dass nur der Inhalt overflowed wird,
* statt die gesamte Seite
*/
.content-wrapper {
overflow-x: auto;
max-width: 100%;
margin: 0em 1em 0em 0em;
}
.content-wrapper.left{
float: left;
margin: 0em 1em 0em 0em;
}
.content-wrapper.right{
float: right;
margin: 0em 0em 0em 1em;
}
@media screen and (max-width: 500px) {
.content-wrapper {
width: 100%;
margin: 0;
}
.content-wrapper.left,
.content-wrapper.right {
float: none;
margin: 0em 0em 0em 0em;
}
}