, , , ,

MediaWiki: Common.css

From Camilo's web
Revision as of 14:19, 15 June 2020 by Camilo (talk | contribs)
Jump to: navigation, search
Mountain View

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

.mw-body-content a:link { color: #068b9a !IMPORTANT; }
.mw-body-content a:link:visited { color: #204a87 !IMPORTANT; }


.mw-body-content a:link {color: #068b9a}
.mw-body-content a:visited {color: #204a87}
.mw-body-content a:hover {color: #068b9a}
.mw-body-content a:active {color: #068b9a}

.mw-body a:link {color: #068b9a}
.mw-body a:visited {color: #204a87}

.no-decoration a:hover {text-decoration: none;}

/* Style of the tweeter feed */

#tw-list {
    margin-left: 43px;
    padding: 0;
}

#tw-list li{
    list-style:decimal;
    margin-bottom: 2px;
    padding: 4px;
}

/* REMOVES THE IMAGES FROM THE EXTERNAL LINKS  */

div#content a.external[href ^="https://"] {
    background-image: none;
    padding-right: 0;
}

div#content a.external[href ^="http://"] {
    background-image: none;
    padding-right: 0;
}

/* REMOVE THE TITLE FROM THE MAIN PAGE */

body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } 

/* @import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');*/

@import url( 'https://fonts.googleapis.com/css?family=Fira+Sans');

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

/* Changes the default font used for MediaWiki headings to Noto Serif: */
#content h1, 
#content h2 {
  font-family: "Fira Sans", sans-serif;
}



/* To make images responsive */
.res-img img {
max-width:100%;
height:auto;
}