MediaWiki:Common.css: Difference between revisions
From Webwalker Knowledge Base
(Created page with "→CSS placed here will be applied to all skins: →Apply Webwalker's corporate colors: #mw-header-hack .color-middle { background: #1565c0 !important; } #mw-header-hack .color-left { background: #2d2b46 !important; } #mw-header-hack .color-right { background: #2d2b46 !important; } #mw-content-container { border-bottom-color: #2d2b46 !important; } →Hide "Powered By" icon: #footer-poweredbyico { display: none; }") |
No edit summary |
||
Line 2: | Line 2: | ||
/* Apply Webwalker's corporate colors */ | /* Apply Webwalker's corporate colors */ | ||
body { | |||
background-color: #1565c0 !important; | |||
} | |||
#mw-header-hack .color-middle { | #mw-header-hack .color-middle { | ||
background: #1565c0 !important; | background: #1565c0 !important; | ||
Line 13: | Line 16: | ||
#mw-content-container { | #mw-content-container { | ||
border-bottom-color: #2d2b46 !important; | border-bottom-color: #2d2b46 !important; | ||
} | |||
/* Different footer colors */ | |||
.mw-footer-container { | |||
background-color: #1565c0 !important; | |||
color: #ffffff !important; | |||
} | |||
.mw-footer-container a { | |||
color: #dbeaff !important; | |||
} | |||
.mw-footer-container a:hover { | |||
color: #cbe2ff !important; | |||
} | |||
.mw-footer-container a:visited { | |||
color: #c1dcff !important; | |||
} | |||
.mw-footer-container a:visited:hover { | |||
color: #add0ff !important; | |||
} | |||
/* Hide background image in the content section */ | |||
#mw-content-container { | |||
background-image: none !important; | |||
} | } | ||
Line 18: | Line 44: | ||
#footer-poweredbyico { | #footer-poweredbyico { | ||
display: none; | display: none; | ||
} | |||
/* Hide User Tools unless logged-in */ | |||
#user-tools #personal { | |||
display: none; | |||
} | |||
.mw-editable #user-tools #personal { | |||
display: inline-block; | |||
} | } |
Revision as of 18:46, 8 August 2023
/* CSS placed here will be applied to all skins */ /* Apply Webwalker's corporate colors */ body { background-color: #1565c0 !important; } #mw-header-hack .color-middle { background: #1565c0 !important; } #mw-header-hack .color-left { background: #2d2b46 !important; } #mw-header-hack .color-right { background: #2d2b46 !important; } #mw-content-container { border-bottom-color: #2d2b46 !important; } /* Different footer colors */ .mw-footer-container { background-color: #1565c0 !important; color: #ffffff !important; } .mw-footer-container a { color: #dbeaff !important; } .mw-footer-container a:hover { color: #cbe2ff !important; } .mw-footer-container a:visited { color: #c1dcff !important; } .mw-footer-container a:visited:hover { color: #add0ff !important; } /* Hide background image in the content section */ #mw-content-container { background-image: none !important; } /* Hide "Powered By" icon */ #footer-poweredbyico { display: none; } /* Hide User Tools unless logged-in */ #user-tools #personal { display: none; } .mw-editable #user-tools #personal { display: inline-block; }