MediaWiki:Common.css: verschil tussen versies
Label: Ongedaan gemaakt |
|||
Regel 1: | Regel 1: | ||
/** CSS die hier wordt geplaatst heeft invloed op alle skins */ | /** CSS die hier wordt geplaatst heeft invloed op alle skins */ | ||
/* Import Font Awesome */ | |||
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"); | |||
/* Infobox */ | /* Infobox */ |
Versie van 17 sep 2022 12:11
/** CSS die hier wordt geplaatst heeft invloed op alle skins */ /* Import Font Awesome */ @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"); /* Infobox */ .centered { text-align: center; } .infobox { box-sizing: border-box; width: 100%; margin: 0 0 1em; background-color: white; border: 1px black solid; } @media screen and (min-width: 800px) { .infobox { float: right; width: 22em; margin: 0.5em 0 0.5em 1em; } } .infobox-title { font-size: 125%; font-weight: bold; background-color: #bbb; } .infobox-subtitle { font-weight: bold; background-color: #ddd; } .infobox-image { img { width: 100%; } }