User:Iggy2300/common.css

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search

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.
/* Custom Font */

body {
    font-family: "Open Sans", serif;
}

/* Animation for the Wiki Logo upon hover */
/* Source: https://dev.wikia.com/wiki/MovingWordmark */

.mw-wiki-logo {
    transform: rotate(0) scale(1) skew(180deg) translate(0);
    transition: all 0.6863s ease;
}

.mw-wiki-logo:hover {
    transform: rotate(1deg) scale(1.09) skew(180deg) translate(0);
}

/* Fancy Links upon Hover */

a:hover {
    color: red;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 0 0 green, 0 1px 0 green, 0 0 8px green;
}