Bureaucrats, Moderators (CommentStreams), Interface administrators, Push subscription managers, Suppressors, Administrators
13,293
edits
No edit summary Tag: Manual revert |
(add more portal formats) |
||
| Line 1,079: | Line 1,079: | ||
/* </source> */ | /* </source> */ | ||
/* Additional portal column widths for new layouts */ | |||
.portal-column-33 { | |||
float: left; | |||
width: 33.3%; | |||
} | |||
.portal-column-left-75 { | |||
float: left; | |||
width: 75%; | |||
} | |||
.portal-column-right-25 { | |||
float: right; | |||
width: 24%; /* 25% minus 1% gap */ | |||
} | |||
.portal-column-left-60 { | |||
float: left; | |||
width: 60%; | |||
} | |||
.portal-column-right-40 { | |||
float: right; | |||
width: 39%; /* 40% minus 1% gap */ | |||
} | |||
.portal-column-left-25 { | |||
float: left; | |||
width: 25%; | |||
} | |||
.portal-column-right-75 { | |||
float: right; | |||
width: 74%; /* 75% minus 1% gap */ | |||
} | |||
/* Mobile fallback – collapse everything on narrow screens (extend existing @media block) */ | |||
@media only screen and (max-width: 800px) { | |||
.portal-column-33, | |||
.portal-column-left-75, .portal-column-right-25, | |||
.portal-column-left-60, .portal-column-right-40, | |||
.portal-column-left-25, .portal-column-right-75 { | |||
float: none !important; | |||
width: 100% !important; | |||
} | |||
} | |||