MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: .col2-responsive td { width: 50%; } @media screen and (max-width: 720px) { .col2-responsive td { display: block; width: 100% !important; padding-right: 0 !important; } }") |
No edit summary |
||
| Line 7: | Line 7: | ||
@media screen and (max-width: 720px) { | @media screen and (max-width: 720px) { | ||
.col2-responsive td { | .col2-responsive td { | ||
display: block; | display: block !important; | ||
width: 100% !important; | width: 100% !important; | ||
padding-right: 0 !important; | padding-right: 0 !important; | ||
box-sizing: border-box !important; | |||
} | } | ||
} | } | ||
Latest revision as of 01:39, 15 March 2026
/* CSS placed here will be applied to all skins */
.col2-responsive td {
width: 50%;
}
@media screen and (max-width: 720px) {
.col2-responsive td {
display: block !important;
width: 100% !important;
padding-right: 0 !important;
box-sizing: border-box !important;
}
}