MediaWiki:Common.css: Difference between revisions
From VLTK
(Created page with "→CSS placed here will be applied to all skins: div.mw-header-container{ background: #b06fff !important; }") |
No edit summary |
||
(17 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 */ | ||
div | :root{ | ||
--background-color: #c8ffce; | |||
} | |||
body{ | |||
background: var(--background-color) !important; | |||
} | |||
/* font size for the main content of a page */ | |||
.mw-body-content { | |||
font-size: 125%; | |||
} | |||
div#mw-header-container{ | |||
background: #b06fff !important; | background: #b06fff !important; | ||
} | |||
div.color-middle{ | |||
background: yellow; | |||
} | |||
div.color-left{ | |||
background: #ff148d; | |||
} | |||
div.color-right{ | |||
background: #fd9209; | |||
} | |||
.mw-body h1.firstHeading { | |||
margin: 0.25em 0 0.5em; | |||
border-bottom: none; | |||
font-size: 240%; | |||
font-family: sans-serif; | |||
line-height: 1.25; | |||
font-weight: bold; | |||
} | |||
/* hide the Wiki Tools in the sidebar */ | |||
div#site-tools{ | |||
display: none; | |||
} | |||
#p-logo-text { | |||
display: none; | |||
} | |||
.mw-footer-container, | |||
.mw-footer-container a, | |||
.mw-footer-container a:visited { | |||
border-top: unset; | |||
box-shadow: unset; | |||
color: black; | |||
} | |||
#mw-content-container { | |||
border-bottom: none; | |||
} | |||
#mw-content-container { | |||
background: var(--background-color); | |||
} | |||
div.color-right, div.color-left, div.color-middle-container, div.color-middle { | |||
background: #b06fff; | |||
} | |||
#mw-related-navigation .sidebar-chunk, #mw-site-navigation .sidebar-chunk { | |||
background: transparent; | |||
border: none; | |||
} | |||
#mw-related-navigation .sidebar-chunk a, #mw-site-navigation .sidebar-chunk a { | |||
color: black; | |||
} | |||
#mw-site-navigation .sidebar-chunk h3, #mw-related-navigation .sidebar-chunk h3{ | |||
border-bottom: solid 2px black; | |||
padding-bottom: 0.75em; | |||
} | } |
Latest revision as of 08:42, 17 December 2021
/* CSS placed here will be applied to all skins */ :root{ --background-color: #c8ffce; } body{ background: var(--background-color) !important; } /* font size for the main content of a page */ .mw-body-content { font-size: 125%; } div#mw-header-container{ background: #b06fff !important; } div.color-middle{ background: yellow; } div.color-left{ background: #ff148d; } div.color-right{ background: #fd9209; } .mw-body h1.firstHeading { margin: 0.25em 0 0.5em; border-bottom: none; font-size: 240%; font-family: sans-serif; line-height: 1.25; font-weight: bold; } /* hide the Wiki Tools in the sidebar */ div#site-tools{ display: none; } #p-logo-text { display: none; } .mw-footer-container, .mw-footer-container a, .mw-footer-container a:visited { border-top: unset; box-shadow: unset; color: black; } #mw-content-container { border-bottom: none; } #mw-content-container { background: var(--background-color); } div.color-right, div.color-left, div.color-middle-container, div.color-middle { background: #b06fff; } #mw-related-navigation .sidebar-chunk, #mw-site-navigation .sidebar-chunk { background: transparent; border: none; } #mw-related-navigation .sidebar-chunk a, #mw-site-navigation .sidebar-chunk a { color: black; } #mw-site-navigation .sidebar-chunk h3, #mw-related-navigation .sidebar-chunk h3{ border-bottom: solid 2px black; padding-bottom: 0.75em; }