User:DodoMan/snowflake.css: Difference between revisions

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

Revision as of 12:44, 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);
	}
}