A new userstyle
Fill Ram by aydan122122
Details
Authoraydan122122
LicenseNo License
Categoryall
Created
Updated
Size574 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name www.youtube.com - 19.6.2023, 23:44:50
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("http") {
/* WHANING: IT CAN CRASH PC */ div:not(:active) {
animation: yadpoof;
animation-duration: 0.3s;
animation-iteration-count: 1;
transition: opacity 0.5s;
}
@keyframes yadpoof {
0% {
transform: scale(1);
filter: blur(0px);
}
100% {
transform: scale(3.5);
opacity: 0;
filter: blur(50px);
}
}
}