User:Iggy2300/common.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
mNo edit summary
Tag: Mobile edit
mNo edit summary
Tag: Mobile edit
Line 1: Line 1:
/* Custom Font */
/* Custom Font */


body {
body, html, article, #mw-content-text{
     font-family: "Open Sans", “Verdana”;
     font-family: "Open Sans", “Verdana”;
}
}

Revision as of 07:30, January 30, 2020

/* Custom Font */

body, html, article, #mw-content-text{
    font-family: "Open Sans", Verdana;
}

/* 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);
}