Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
m (Editor fix take 2) |
m (Removed test CSS) Tag: Manual revert |
||
(26 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Silver Jubilee scheme | |||
:root { | |||
--main-bg-color: #c8c9ca; /*was d0d1d2*/ | |||
--lighter-bg-color: #e1e2e3; | |||
--main-color: #111; | |||
--non-red-link-color: #2667a1; | |||
--trim-color: #2667a1; | |||
--minor-link: #88898a; | |||
--banner-fix: brightness(100%) sepia(1) hue-rotate(178deg) brightness(55%) saturate(155%) | |||
} | |||
*/ | |||
/* Standard colors */ | |||
:root { | |||
--main-bg-color: #222; | |||
--darker-bg-color: #333; | |||
--main-color: #fff; | |||
--non-red-link-color: #990; | |||
--trim-color: #990; | |||
} | |||
body { | body { | ||
background-color: #222; | background-color: #222; | ||
color: #fff; | color: #fff;; | ||
} | } | ||
Line 11: | Line 31: | ||
div#mw-head { | div#mw-head { | ||
background-color: #222; | background-color: #222; | ||
} | } | ||
Line 20: | Line 39: | ||
div.vectorTabs span > a { | div.vectorTabs span > a { | ||
background-color: #222; | background-color: #222; | ||
color: # | color: #990; | ||
} | } | ||
div.vectorTabs { | div.vectorTabs { | ||
background-image: none; | background-image: none; | ||
background-color: # | background-color: #990; | ||
} | } | ||
Line 35: | Line 53: | ||
div#content { | div#content { | ||
color: #fff; | color: #fff;; | ||
background-color: #222; | background-color: #222; | ||
border-color: # | border-color: #990; | ||
} | } | ||
Line 45: | Line 63: | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
border-color: # | border-color: #990; | ||
} | } | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
color: # | color: #990; | ||
} | } | ||
div#mw-panel div.portal div.body ul li a, a { | div#mw-panel div.portal div.body ul li a, a { | ||
color: # | color: #990; | ||
} | } | ||
div#mw-panel div.portal div.body ul li a:visited, a:visited { | div#mw-panel div.portal div.body ul li a:visited, a:visited { | ||
color: # | color: #990; | ||
} | } | ||
div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited { | div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited { | ||
color: | color: var(--minor-link); | ||
} | } | ||
div.editOptions { | div.editOptions { | ||
color: #333; | color: #333; | ||
background-color: #999; | |||
} | } | ||
div.editOptions a:visited { | div.editOptions a:visited { | ||
color: # | color: #222; | ||
} | |||
div#editpage-copywarn a { | |||
color: #36c; | |||
} | |||
span.editHelp a { | |||
color: #36c; | |||
} | } | ||
Line 82: | Line 109: | ||
table.wikitable thead tr th, table.wikitable tbody tr th { | table.wikitable thead tr th, table.wikitable tbody tr th { | ||
background-color: var(--darker-bg-color); | |||
color: #fff;; | |||
color: #fff; | |||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
Line 114: | Line 140: | ||
} | } | ||
table.sidebar td.class { | table.sidebar td.class { | ||
background-color: # | background-color: #222; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
font-variant: small-caps; | font-variant: small-caps; | ||
font-size: large; | font-size: large; | ||
color: # | color: #990; | ||
margin: 1em 0 0 1em; | margin: 1em 0 0 1em; | ||
line-height: 130%; | line-height: 130%; | ||
Line 126: | Line 152: | ||
} | } | ||
table.sidebar td.class a:link { | table.sidebar td.class a:link { | ||
color: # | color: #222 !important; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
Line 134: | Line 160: | ||
} | } | ||
table.sidebar td.classname { | table.sidebar td.classname { | ||
background-color: # | background-color: #222; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
font-variant: small-caps; | font-variant: small-caps; | ||
Line 262: | Line 288: | ||
a.external.text:visited { | a.external.text:visited { | ||
color: # | color: #36b; | ||
} | |||
a { | |||
color: #990 !important; | |||
} | } | ||
.wikiEditor-ui-toolbar .tabs, .wikiEditor-ui-toolbar .section-main { | .wikiEditor-ui-toolbar .tabs, .wikiEditor-ui-toolbar .section-main { | ||
height: auto | height: auto; | ||
} | } |
Latest revision as of 16:08, 25 May 2023
/* CSS placed here will be applied to all skins */
/* Silver Jubilee scheme
:root {
--main-bg-color: #c8c9ca; /*was d0d1d2*/
--lighter-bg-color: #e1e2e3;
--main-color: #111;
--non-red-link-color: #2667a1;
--trim-color: #2667a1;
--minor-link: #88898a;
--banner-fix: brightness(100%) sepia(1) hue-rotate(178deg) brightness(55%) saturate(155%)
}
*/
/* Standard colors */
:root {
--main-bg-color: #222;
--darker-bg-color: #333;
--main-color: #fff;
--non-red-link-color: #990;
--trim-color: #990;
}
body {
background-color: #222;
color: #fff;;
}
p {
color: #fff;
}
div#mw-head {
background-color: #222;
}
div#mainContent, div#side, div#footer {
background-color: #222;
}
div.vectorTabs span > a {
background-color: #222;
color: #990;
}
div.vectorTabs {
background-image: none;
background-color: #990;
}
div.vectorMenu h3 a {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAACMCAIAAAAyWVTYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkSEjAndg7eHAAAABRJREFUKM9j+P+fgYmBYRSPYqIwAIsuAxUaCAlMAAAAAElFTkSuQmCC);
}
div#content {
color: #fff;;
background-color: #222;
border-color: #990;
}
#mw-panel.collapsible-nav .portal {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAABCAIAAACDjNFvAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkSEjYnIFR5mgAAABBJREFUGNNj/P+fYRQMcgAARzACALHHhMYAAAAASUVORK5CYII=);
}
h1, h2, h3, h4, h5, h6 {
border-color: #990;
}
h1, h2, h3, h4, h5, h6 {
color: #990;
}
div#mw-panel div.portal div.body ul li a, a {
color: #990;
}
div#mw-panel div.portal div.body ul li a:visited, a:visited {
color: #990;
}
div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited {
color: var(--minor-link);
}
div.editOptions {
color: #333;
background-color: #999;
}
div.editOptions a:visited {
color: #222;
}
div#editpage-copywarn a {
color: #36c;
}
span.editHelp a {
color: #36c;
}
div.thumbcaption {
color: #000 !important;
}
table.wikitable {
background-color: #222;
color: #fff;
}
table.wikitable thead tr th, table.wikitable tbody tr th {
background-color: var(--darker-bg-color);
color: #fff;;
font-weight: bold;
}
/* TABLE: WIKI-SIDEBAR */
table.sidebar {
background-color: #f7f7f7;
border: 1px solid #000000;
border-collapse:collapse;
font-size: 95%;
color: #000000;
clear: right;
float: right;
width: 200px;
margin-left: 1.5em;
margin-right: 0em;
}
table.sidebar tr th {
background-color: #c7c7c7;
border: 1px outset #000000;
text-align: center;
font-weight: bold;
}
table.sidebar tr.header th.header {
background-color: #c7c7c7;
border: 1px outset #000000;
text-align: center;
font-weight: bold;
}
table.sidebar td.class {
background-color: #222;
border-collapse: collapse;
font-variant: small-caps;
font-size: large;
color: #990;
margin: 1em 0 0 1em;
line-height: 130%;
font-weight: bold;
text-align: center;
border: 1px outset #000000;
}
table.sidebar td.class a:link {
color: #222 !important;
text-decoration: none;
}
table.sidebar td.class a:hover {
color: #ffffff !important;
text-decoration: none;
}
table.sidebar td.classname {
background-color: #222;
border-collapse: collapse;
font-variant: small-caps;
font-size: 125%;
color: #edad00;
margin: 1em 0 0 1em;
line-height: 140%;
font-weight: bold;
text-align: center;
border: 1px outset #000000;
}
table.sidebar td.film {
background-color: #c7c7c7;
border-collapse: collapse;
font-variant: small-caps;
color: #000000;
margin: 1em 0 0 1em;
line-height: 130%;
font-weight: bold;
text-align: center;
border: 1px outset #000000;
}
table.sidebar td.image {
background-color: #222;
color: #aecdee;
text-align: center;
border: 1px outset #222;
}
table.sidebar td.name {
background-color: #f7f7f7;
border-collapse: collapse;
font-variant: small-caps;
font-size: 140%;
color: #000000;
margin: 1em 0 0 1em;
line-height: 130%;
font-weight: bold;
text-align: center;
border: 1px outset #000000;
}
table.sidebar td.arc {
border-collapse: collapse;
font-variant: small-caps;
font-size: 100%;
color: #000000;
margin: 1em 0 0 1em;
line-height: 130%;
font-weight: bold;
text-align: center;
border: 1px outset #000000;
}
table.sidebar td.left {
background-color: #222;
color: #fff;
line-height: 130%;
text-align: right;
border: 1px outset #222;
}
table.sidebar td.left a:link {
color: #ffffff;
text-decoration: none;
}
table.sidebar td.left a:hover {
color: #aecdee;
text-decoration: none;
}
table.sidebar td.right {
background-color: #f7f7f7;
color: #000000;
line-height: 130%;
text-align: left;
border: 1px outset #000000;
}
table.sidebar td.righta {
background-color: #f7f7f7;
color: #000000;
line-height: 130%;
text-align: left;
border: 1px outset #000000;
}
table.sidebar td.rightb {
background-color: #c7c7c7;
color: #000000;
line-height: 130%;
text-align: left;
border: 1px outset #000000;
}
/* DEPRECATED: Use td.left instead! */
table.wiki-sidebar td.odd {
width: 35%;
font-weight: bold;
text-align: right;
}
table.wiki-sidebar td.sb-both {
text-align: center;
padding-left: 0;
padding-right: 0;
}
table.wiki-sidebar td.sb-both img {
display:block;
/*force new line after img in sidebar */
border: 0px outset #aaaaaa;
margin: 0;
padding-left: 0;
padding-right: 0;
}
table.wiki-sidebar td.sb-left {
width: 35%;
font-weight: bold;
text-align: right;
background-color: #f7f7f7;
border: 0px outset #aaaaaa;
}
table.wiki-sidebar td.sb-right {
background-color: #f7f7f7;
#nav li a {
background-color: #000000;
border-top: none;
border-left: 1px solid #ddd;
}
a.external.text {
color: #0b4f6c;
}
a.external.text:visited {
color: #36b;
}
a {
color: #990 !important;
}
.wikiEditor-ui-toolbar .tabs, .wikiEditor-ui-toolbar .section-main {
height: auto;
}