User:DodoMan/snowflake.css: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
m (Justarandomamerican moved page User:DodoMan/snowflake.css to User:DodoMan~usurped/snowflake.css without leaving a redirect: Automatically moved page while renaming the user "DodoMan" to "DodoMan~usurped")
m (FuzzyBot moved page User:DodoMan~usurped/snowflake.css to User:DodoMan/snowflake.css: Part of translatable page "User:DodoMan~usurped")
 
(No difference)

Latest revision as of 12:56, 2 April 2024

.snowflake {
	position: fixed;
	top: -10px;
    z-index: 9999;
    opacity: 0.9;
    color: #99c4ce;
    animation-name: fall;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    pointer-events: none;
}

@keyframes fall {
	to {
		transform: translateY(100vh);
	}
}