MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Basic markup for LOFE images and text */ | |||
.lofe-image, .lofe-image img { | .lofe-image, .lofe-image img { | ||
| Line 14: | Line 16: | ||
} | } | ||
/* Additional classes set the minimum (and maximum?) */ | |||
/* widths of the monospace text to avoid unwanted wrapping */ | |||
. | div.lofe-m30 {min-width:30em;} | ||
div.lofe-m50 {min-width:50em;} | |||
/* This code will be applied to all pages in the LOFE */ | |||
/* When migrating to live wiki, need to replace 3000 with actual ID. */ | |||
.ns-3000 #content, .ns-3001 #content { } | .ns-3000 #content, .ns-3001 #content { } | ||
| Line 21: | Line 30: | ||
.ns-3000 #content .navbar, .ns-3001 #content .navbar { | .ns-3000 #content .navbar, .ns-3001 #content .navbar { | ||
background-color:white; | background-color:white; | ||
/* Testing the possibility of removing the sidebar */ | |||
.ns-3000 .mw-panel {visibility: hidden} | |||
} | } | ||
Revision as of 22:15, 17 August 2025
/* CSS placed here will be applied to all skins */
/* Basic markup for LOFE images and text */
.lofe-image, .lofe-image img {
width:100%;
max-width:50em;
}
.lofe-image img {height:auto;}
div.lofe-text {
width:100%;
max-width:50em;
}
/* Additional classes set the minimum (and maximum?) */
/* widths of the monospace text to avoid unwanted wrapping */
div.lofe-m30 {min-width:30em;}
div.lofe-m50 {min-width:50em;}
/* This code will be applied to all pages in the LOFE */
/* When migrating to live wiki, need to replace 3000 with actual ID. */
.ns-3000 #content, .ns-3001 #content { }
.ns-3000 #content .navbar, .ns-3001 #content .navbar {
background-color:white;
/* Testing the possibility of removing the sidebar */
.ns-3000 .mw-panel {visibility: hidden}
}