Difference between revisions of "MediaWiki:Common.css"

From Nomad DB
(Created page with "→‎CSS placed here will be applied to all skins: :root { --main-bg-color: #2A2A2A; --main-text-color: #D9D9D9; --link-color: #F1C94F; --link-color-visited: #F1C94F; --n...")
 
(Blanked the page)
Tag: Blanking
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
 
:root {
 
--main-bg-color: #2A2A2A;
 
--main-text-color: #D9D9D9;
 
--link-color: #F1C94F;
 
--link-color-visited: #F1C94F;
 
--new-link-color: #EF533E;
 
}
 
  
body {
 
background-color: var(--main-bg-color);
 
color: var(--main-text-color);
 
}
 
a {
 
color: var(--link-color);
 
}
 
a:visited {
 
color: var(--link-color-visited);
 
}
 
 
/* --- SIDEBAR --- */
 
#mw-panel .portal h3 {
 
color: var(--main-text-color);
 
}
 
#mw-panel .portal .body {
 
background: none;
 
}
 
#mw-panel .portal .body li a {
 
color: var(--link-color);
 
}
 
#mw-panel .portal .body li a:visited {
 
color: var(--link-color-visited);
 
}
 
/* --- END SIDEBAR --- */
 
 
/* --- HEADER --- */
 
#mw-page-base {
 
background: none;
 
}
 
.vectorTabs, .vectorTabs span, #mw-head .vectorMenu h3 {
 
background: none;
 
}
 
.vectorTabs .selected {
 
background: none;
 
}
 
.vectorTabs li {
 
background: none;
 
}
 
.vectorTabs li a, .vectorTabs .selected a, .vectorTabs .selected a:visited {
 
color: var(--link-color);
 
}
 
.vectorMenu h3 span {
 
color: var(--link-color);
 
}
 
.vectorTabs .new a, .vectorTabs .new a:visited {
 
color: var(--new-link-color);
 
}
 
a.new, #p-personal a.new, a.new:visited, #p-personal a.new:visited {
 
color: var(--new-link-color);
 
}
 
/* --- END HEADER --- */
 
 
/* --- MAIN CONTENT --- */
 
h1, h2, h3, h4, h5, h6 {
 
color: var(--main-text-color);
 
}
 
.mw-body {
 
background-color: var(--main-bg-color);
 
color: var(--main-text-color);
 
}
 
/* --- END MAIN CONTENT --- */
 

Latest revision as of 16:42, 14 April 2020