MediaWiki:Gadget-ResponsiveStyle.css: Difference between revisions
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
mNo edit summary |
mNo edit summary |
||
Line 12: | Line 12: | ||
@media all and (min-width: 720px) { | @media all and (min-width: 720px) { | ||
/* Notice templates */ | /* Notice templates */ | ||
.notice-template. | .notice-template.file { | ||
text-align: center; | text-align: center; | ||
} | } | ||
} | } |
Revision as of 13:50, June 4, 2024
/* Responsive CSS applied to both desktop and mobile */
/* Mobile phone */
@media all and (max-width: 719px) {
/* Template:Columns */
.columns {
column-count: auto !important;
}
}
/* Desktop/tablet */
@media all and (min-width: 720px) {
/* Notice templates */
.notice-template.file {
text-align: center;
}
}