MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Ttswikiadmin (talk | contribs) (Created page with "→CSS placed here will be applied to all skins: .portal-column-left { float: left; width: 100%; } .portal-column-right { float: right; width: 100%; } →Two column layout on wider screens: @media (min-width: 720px) { .portal-column-left { width: 48%; margin-right: 2%; } .portal-column-right { width: 48%; margin-left: 2%; } }") |
Ttswikiadmin (talk | contribs) m (Protected "MediaWiki:Common.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
||
(No difference)
| |||
Revision as of 01:33, 20 September 2025
/* CSS placed here will be applied to all skins */
.portal-column-left {
float: left;
width: 100%;
}
.portal-column-right {
float: right;
width: 100%;
}
/* Two column layout on wider screens */
@media (min-width: 720px) {
.portal-column-left {
width: 48%;
margin-right: 2%;
}
.portal-column-right {
width: 48%;
margin-left: 2%;
}
}