MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
.comic * { | |||
box-sizing: border-box; | |||
} | |||
.comic { | .comic { | ||
background-color: #f8f9fa; | background-color: #f8f9fa; | ||
padding: 1px; | |||
} | |||
.comic .title { | |||
font-weight: bold; | |||
font-size: 24px; | |||
margin: 0.25em; | |||
text-align: center; | |||
display: block; | |||
} | |||
.comic .image-container { | |||
margin: 0 auto; | |||
} | } | ||
.comic .image-container img { | .comic .image-container img { | ||
max-width: 50vw; | max-width: 50vw; | ||
display: block; | |||
} | } |
Revision as of 22:45, 5 August 2024
/* CSS placed here will be applied to all skins */
.comic * {
box-sizing: border-box;
}
.comic {
background-color: #f8f9fa;
padding: 1px;
}
.comic .title {
font-weight: bold;
font-size: 24px;
margin: 0.25em;
text-align: center;
display: block;
}
.comic .image-container {
margin: 0 auto;
}
.comic .image-container img {
max-width: 50vw;
display: block;
}