MediaWiki:Common.css: Difference between revisions

From Andrealphus Games
Jump to navigation Jump to search
andrealphusgames>Spiritwriter
No edit summary
 
m (1 revision imported)
(No difference)

Revision as of 11:10, 29 September 2021

.spoilerblur {
    background-color: #333;
    display: inline-block;
    -webkit-transition: all 1s 0 linear;
    -moztransition: all 1s 0 linear;
    -o-transition: all 1s 0 linear;
    -ms-transition: all 1s 0 linear;
    transition: all 1s 0 linear
}

.spoilerblur:hover {
    background-color: inherit;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    transition-delay: 0.5s
}