mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
21 lines
323 B
CSS
21 lines
323 B
CSS
|
/*
|
||
|
* 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;
|
||
|
}
|
||
|
}
|
||
|
.animation-rainbow {
|
||
|
animation: 2s linear infinite rainbow;
|
||
|
}
|