1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 11:34:21 +00:00
bluelib/dist/fun.module.css

21 lines
331 B
CSS
Raw Permalink Normal View History

2022-10-11 14:48:22 +00:00
/*
* Bluelib Fun Experiments
* by <me@steffo.eu>
*/
@property --bhsl-current-hue {
syntax: '<angle>';
initial-value: 0deg;
inherits: true;
}
@keyframes rainbow {
0% {
--bhsl-current-hue: 0deg;
}
100% {
--bhsl-current-hue: 360deg;
}
}
2023-04-07 00:19:56 +00:00
:where(.animation-rainbow) {
2022-10-11 14:48:22 +00:00
animation: 2s linear infinite rainbow;
}