MediaWiki:Common.css

From Lisgar's AVA
Jump to navigationJump to search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */


@import url(http://fonts.googleapis.com/css?family=Michroma);

body {
    font-family: "Segoe UI", "Arial", "Helvetica", sans-serif !important;
    background:white;
}

h1, h2, .michroma {
    font-family: "Michroma";
    font-weight: normal !important;
    text-transform: uppercase;
}

h2 {
    font-size: 100% !important;
}

div#content {
    border:none !important;
}

#mw-content-text {
    font-family: "Segoe UI", "Arial", "Helvetica", sans-serif !important;
    font-size: 1.2em;
}

//link anims

a {
    color:#3465a4;
    text-decoration:underline;
    text-decoration-color:transparent;
    background:rgba(128,128,128,0);
    -webkit-transition: all 250ms;
    -moz-transition:    all 250ms;
    -o-transition:      all 250ms;
    transition:         all 250ms;
}

a:visited {
    color:#3465a4;
    text-decoration-color:transparent;
    background:rgba(128,128,128,0);
    -webkit-transition: all 250ms;
    -moz-transition:    all 250ms;
    -o-transition:      all 250ms;
    transition:         all 250ms;
}

a:hover {
    color:#508FDC;
    text-decoration-color:#508FDC;
    background:rgba(128,128,128,.1);
    -webkit-transition: all 250ms;
    -moz-transition:    all 250ms;
    -o-transition:      all 250ms;
    transition:         all 250ms;
}