MediaWiki:Common.css: Unterschied zwischen den Versionen
Ares (Diskussion | Beiträge) K (.content-wrapper add left and right class) |
Ares (Diskussion | Beiträge) K (content-wrapper mobile) |
||
Zeile 36: | Zeile 36: | ||
.content-wrapper.left{ | .content-wrapper.left{ | ||
float: left; | float: left; | ||
margin: 0em 1em | margin: 0em 1em 0em 0em; | ||
} | } | ||
.content-wrapper.right{ | .content-wrapper.right{ | ||
float: right; | float: right; | ||
margin: 0em 0em | margin: 0em 0em 0em 1em; | ||
} | } | ||
Zeile 48: | Zeile 48: | ||
width: 100%; | width: 100%; | ||
margin: 0; | margin: 0; | ||
} | |||
.content-wrapper.left, | |||
.content-wrapper.right { | |||
float: none; | |||
margin: 0em 0em 0em 0em; | |||
} | } | ||
} | } |
Version vom 17. April 2020, 11:29 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;
font-size: 85%;
max-width: 100%;
margin: 0em 1em 1em 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;
}
}