User:Iggy2300/common.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 21: Line 21:
a:hover {
a:hover {
     color: red;
     color: red;
     text-decoration: none;
     text-decoration: none !important;
     font-weight: bold;
     font-weight: bold;
     text-shadow: 1px 0 0 green, 0 1px 0 green, 0 0 8px green;
     text-shadow: 1px 0 0 green, 0 1px 0 green, 0 0 8px green;
}
}

Revision as of 11:40, May 21, 2018

/* 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 !important;
    font-weight: bold;
    text-shadow: 1px 0 0 green, 0 1px 0 green, 0 0 8px green;
}