User:Iggy2300/common.css: Difference between revisions
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary |
(Fallback font) Tag: Mobile edit |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Custom Font */ | /* Custom Font */ | ||
body { | body, html, article, #mw-content-text{ | ||
font-family: "Open Sans", serif; | font-family: "Open Sans", “Verdana”, “Arial”, sans-serif; | ||
} | } | ||
Latest revision as of 16:23, December 11, 2021
/* Custom Font */
body, html, article, #mw-content-text{
font-family: "Open Sans", “Verdana”, “Arial”, 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);
}