Difference between revisions of "MediaWiki:Common.css"

From Wildermyth Wiki
m (Added top margin to footer, fixed header font)
m (Made first header bold)
Line 36: Line 36:
.mw-body h1 {
.mw-body h1 {
     font-family: "Alegreya","Linux Libertine",Georgia,Times,serif;
     font-family: "Alegreya","Linux Libertine",Georgia,Times,serif;
}
/* Make the first header bold */
.mw-body .firstHeading {
    font-weight: bold;
}
}

Revision as of 10:46, 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;
}

/* Main content body */
.mw-body {
    background-image: url(images/b/bc/PaperTextureTile.png);
    margin-right: 3em;

}

/* Side navigation panel*/
div#mw-panel {
    background-image: url(images/f/fd/TextboxSpeech.png);
    background-size: cover;
    background-position: right;
    padding-bottom: 1em;
}

/* Footer */
div#footer {
    margin-right: 3em;
    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;
}