Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.
Revision as of 07:45, March 8, 2025 by Tesinormed (talk | contribs) (Created page with ".glitch-effect { position: relative; animation-name: glitch; animation-iteration-count: infinite; animation-direction: alternate; animation-timing-function: linear; } @keyframes glitch { from { top: 2px; left: 2px; } to { top: -2px; left: -2px; } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.glitch-effect {
	position: relative;
	animation-name: glitch;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
}

@keyframes glitch {
	from {
		top: 2px;
		left: 2px;
	}

	to {
		top: -2px;
		left: -2px;
	}
}