User:DodoMan/snowflake.css: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
m (Justarandomamerican moved page User:Rafdodo/snowflake.css to User:DodoMan/snowflake.css: Automatically moved page while renaming the user "Rafdodo" to "DodoMan")
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")
(No difference)

Revision as of 13:04, 1 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);
	}
}