MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→CSS placed here will be applied to all skins: img.forty-percent-width { width: 40%; height: auto; }" |
Added img.full-width and img.eighty-percent-width |
||
| Line 3: | Line 3: | ||
img.forty-percent-width { | img.forty-percent-width { | ||
width: 40%; | width: 40%; | ||
height: auto; | |||
} | |||
img.eighty-percent-width { | |||
width: 80%; | |||
height: auto; | |||
} | |||
img.full-width { | |||
width: 100%; | |||
height: auto; | height: auto; | ||
} | } | ||
Revision as of 21:21, 8 November 2020
/* CSS placed here will be applied to all skins */
img.forty-percent-width {
width: 40%;
height: auto;
}
img.eighty-percent-width {
width: 80%;
height: auto;
}
img.full-width {
width: 100%;
height: auto;
}