Vorlage:Infobox/styles.css: Unterschied zwischen den Versionen

Aus Ardapedia
Alboin (Diskussion | Beiträge)
Teilweise CSS aus MediaWiki:Common.css der Entwicklungsumgebung übernommen (hoffentlich vorübergehend)
Alboin (Diskussion | Beiträge)
K Änderung 137948 von Alboin (Diskussion) rückgängig gemacht.
Markierung: Rückgängigmachung
 
Zeile 1: Zeile 1:
/* Responsive Darstellung der Infoboxen */
@media only screen and (max-width: 600px) {
@media only screen and (max-width: 600px) {
.infobox {
.infobox {
Zeile 10: Zeile 9:
width: 275px;
width: 275px;
}
}
}
/* Box für [[MediaWiki:Sitenotice]] */
#localNotice {
background: #f8f9fa;
border: 1px solid #8e4924;
padding: 5px;
}
}

Aktuelle Version vom 10. Juli 2026, 18:13 Uhr

@media only screen and (max-width: 600px) {
	.infobox {
		min-width: 100%;
	}
}

@media only screen and (min-width: 601px) {
	.infobox {
		width: 275px;
	}
}