User:Iggy2300/common.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
mNo edit summary
Tag: Mobile edit
Line 2: Line 2:


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



Revision as of 06:27, January 30, 2020

/* Custom Font */

body {
    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);
}