MediaWiki:Common.css: Difference between revisions
No edit summary |
PeterDuffy (talk | contribs) No edit summary |
||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* | |||
body { | body { | ||
background-color: #FFF7EA; | background-color: #FFF7EA; | ||
Line 6: | Line 7: | ||
#mw-page-base { | #mw-page-base { | ||
background-image: linear-gradient( | background-image: linear-gradient(#FFF7EA 50%,#FFFBF4 100%) !important; | ||
background-image: -moz-linear-gradient(top, | background-image: -moz-linear-gradient(top,#FFF7EA 50%,#FFFBF4 100%) | ||
} | |||
*/ | |||
#t-recentchangeslinked, #t-specialpages, #t-permalink, #t-info, #ca-viewsource, #ca-history, #mw-imagepage-section-filehistory, #filehistory, | |||
.mw-logline-delete { | |||
display: none; | |||
} | |||
/* Added by PND 11-30-2023 to update display of outline lists */ | |||
ol { | |||
list-style-type: decimal; | |||
} | |||
ol li > ol { | |||
list-style-type: lower-alpha; | |||
} | |||
ol li > ol li > ol { | |||
list-style-type: lower-roman; | |||
} | } |
Latest revision as of 06:41, 1 December 2023
/* CSS placed here will be applied to all skins */ /* body { background-color: #FFF7EA; } #mw-page-base { background-image: linear-gradient(#FFF7EA 50%,#FFFBF4 100%) !important; background-image: -moz-linear-gradient(top,#FFF7EA 50%,#FFFBF4 100%) } */ #t-recentchangeslinked, #t-specialpages, #t-permalink, #t-info, #ca-viewsource, #ca-history, #mw-imagepage-section-filehistory, #filehistory, .mw-logline-delete { display: none; } /* Added by PND 11-30-2023 to update display of outline lists */ ol { list-style-type: decimal; } ol li > ol { list-style-type: lower-alpha; } ol li > ol li > ol { list-style-type: lower-roman; }