MediaWiki:Timeless.css: Difference between revisions

From ikev.in/w
No edit summary
No edit summary
Line 21: Line 21:
.color-middle {
.color-middle {
     height: 0.35em;
     height: 0.35em;
     background: #ec1690;
     background: #CCCCCC;
     margin-left: 15em;
     margin-left: 15em;
     margin-right: 17em;
     margin-right: 17em;
Line 27: Line 27:
.color-left {
.color-left {
     height: 0.35em;
     height: 0.35em;
     background: #d7ec16;
     background: #ec1690;
     width: 50%;
     width: 50%;
     float: left;
     float: left;
Line 34: Line 34:
     display: inline-block;
     display: inline-block;
     height: 0.35em;
     height: 0.35em;
     background: #d7ec16;
     background: #ec1690;
     width: 50%;
     width: 50%;
     float: right;
     float: right;
Line 40: Line 40:
.mw-body h1.firstHeading {
.mw-body h1.firstHeading {
     margin: 0.25em 0 0.5em;
     margin: 0.25em 0 0.5em;
     border-bottom: solid 4px #86ec16;
     border-bottom: solid 4px #ec1690;
}
}
.tools-inline li.selected {
.tools-inline li.selected {
     border-bottom-color: #86ec16;
     border-bottom-color: #ec1690;
}
}

Revision as of 17:55, 11 October 2021

/* All CSS here will be loaded for users of the Timeless skin */
/* CSS placed here will be applied to the timeless skin */
@import url( 'https://fonts.googleapis.com/css?family=Montserrat ');

/* Changes the default font used for MediaWiki to Montserrat (does not include headings or monospaced text): */
body {
  font-family: "Montserrat", sans-serif;
}

/* Changes the default font used for MediaWiki headings to Montserrat: */
#personal h1, 
#personal h2 {
  font-family: "Montserrat", sans-serif;
}

#p-logo-text a {
  font-family: "Montserrat", sans-serif;
}

/* Trying to figure out the Timeless Skin settings 11oct21 */
.color-middle {
    height: 0.35em;
    background: #CCCCCC;
    margin-left: 15em;
    margin-right: 17em;
}
.color-left {
    height: 0.35em;
    background: #ec1690;
    width: 50%;
    float: left;
}
.color-right {
    display: inline-block;
    height: 0.35em;
    background: #ec1690;
    width: 50%;
    float: right;
}
.mw-body h1.firstHeading {
    margin: 0.25em 0 0.5em;
    border-bottom: solid 4px #ec1690;
}
.tools-inline li.selected {
    border-bottom-color: #ec1690;
}