Difference between revisions of "MediaWiki:Common.css"
From Wildermyth Wiki
m (Image height auto (we don't want images to squish)) |
m (Fixed top navigation bar line that was still around) |
||
Line 107: | Line 107: | ||
} | } | ||
#mw-head div.vectorMenu h3 { | div#mw-head div.vectorMenu h3 { | ||
background-image: none; | background-image: none; | ||
} | } |
Revision as of 11:39, 18 November 2019
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css?family=Alegreya:400,700&display=swap');
/* Background image */
body {
background-image: url(images/5/58/CreditsBG.jpg);
background-attachment: fixed;
background-size: cover;
}
h1 {
color: #252525;
}
/* Top navigation header BG */
#mw-page-base {
background-image: none;
background-color: transparent;
}
/* Main content body */
.mw-body {
background-image: url(images/b/bc/PaperTextureTile.png);
margin-right: 1em;
border: 1px solid #9a7d5d;
}
/* Side navigation panel*/
#mw-panel {
background-image: url(images/f/fd/TextboxSpeech.png);
background-size: cover;
background-position: right;
padding-bottom: 1em;
}
/* Footer */
div#footer {
margin-right: 1em;
margin-top: 1em;
background-image: url(images/c/cb/TextboxThought.png);
background-size: cover;
}
/* Headers */
.mw-body h1 {
font-family: "Alegreya","Linux Libertine",Georgia,Times,serif;
}
/* Make the first header bold */
.mw-body .firstHeading {
font-weight: bold;
}
/* User account actions (in top right corner) */
#p-personal {
background-image: url(images/c/cb/TextboxThought.png);
background-size: cover;
background-position: bottom;
margin: -0.5em;
padding: 0.5em;
}
/* Top bar navigation tabs (remove backgrounds, colors, etc.) */
div.vectorTabs {
background-image: none;
background-color: transparent;
}
div.vectorTabs ul {
background-image: none;
}
div.vectorTabs ul li {
background-image: none;
background-color: transparent;
}
div.vectorTabs li.selected {
background-image: none;
background-color: #faebd726;
}
/* Links (selected) on the top navigation bar */
div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited {
color: #eaeaea;
}
/* Links (unvisited) on the top navigation bar */
div.vectorTabs li a {
color: #84b2ff;
}
/* Links (visited) on the top navigation bar */
div.vectorTabs li a:visited {
color: #e48888;
}
/* "More" button text on the top navigation bar */
div.vectorMenu h3 span {
color: #e4e4e4;
}
/* Remove link button side bars on the top navigation bar */
div.vectorTabs span {
background-image: none;
}
div#mw-head div.vectorMenu h3 {
background-image: none;
}
/* Images generally should resize to be smaller if they're wider than the screen */
img {
max-width:100%;
height: auto;
}