Difference between revisions of "MediaWiki:Common.css"

From Halcove
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
Changes the default font used for MediaWiki to Poppins (does not include headings or monospaced text):
body {
font-family: 'Roboto Slab', serif;
}
#content h1,
#content h2 {font-family: 'Roboto Slab', serif;
}
.color-middle {
.color-middle {
     height: 0.35em;
     height: 0.35em;
Line 39: Line 50:
#mw-content-container {
#mw-content-container {
     padding-bottom: 0em;
     padding-bottom: 0em;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
/* Changes the default font used for MediaWiki to Poppins (does not include headings or monospaced text):
body {
font-family: 'Roboto Slab', serif;
}
*/
/* Changes the default font used for MediaWiki headings to Poppins: */
#content h1,
#content h2 {font-family: 'Roboto Slab', serif;
}
}

Revision as of 06:26, 13 March 2022

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

Changes the default font used for MediaWiki to Poppins (does not include headings or monospaced text): 
body {
font-family: 'Roboto Slab', serif;
}

#content h1,
#content h2 {font-family: 'Roboto Slab', serif;
}

.color-middle {
    height: 0.35em;
    background: #b159ea;
}
.color-right {
    background: #b3bed3;
}
.color-left {
    background: #b3bed3;
}
#mw-content-container {
    border-bottom: solid 4px #545962;
}
#mw-site-navigation .sidebar-chunk, #mw-related-navigation .sidebar-chunk {
    background: #c1c1c1;
    box-shadow: none;
}
#mw-content-container {
    background: #c1c1c1;
}
#mw-site-navigation .sidebar-chunk, #mw-related-navigation .sidebar-chunk {
    background: #c1c1c1;
    box-shadow: none;
    border: none;
}
#mw-site-navigation {
    background: #c1c1c1;
}
#mw-related-navigation {
    background: #c1c1c1;
}
#mw-content {
   border: none;
}
.mw-footer-container {
    border-top: solid 1px #262626;
}
#mw-content-container {
    padding-bottom: 0em;
}