mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 04:54:23 +00:00
44 lines
816 B
CSS
44 lines
816 B
CSS
.background {
|
|
position: fixed;
|
|
left: -50vw;
|
|
width: 200vw;
|
|
height: 200vw;
|
|
top: -50vw;
|
|
z-index: -1;
|
|
filter: blur(10px);
|
|
background: conic-gradient( blue, green, red, blue );
|
|
animation: gradientAnim 10s infinite linear;
|
|
background-position: center;
|
|
}
|
|
|
|
.beat, .beat-manual {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: rgba( 0, 0, 0, 0.15 );
|
|
display: none;
|
|
}
|
|
|
|
.beat {
|
|
animation: beatAnim 0.6s infinite linear;
|
|
}
|
|
|
|
@keyframes beatAnim {
|
|
0% {
|
|
background-color: rgba( 0, 0, 0, 0.2 );
|
|
}
|
|
20% {
|
|
background-color: rgba( 0, 0, 0, 0 );
|
|
}
|
|
100% {
|
|
background-color: rgba( 0, 0, 0, 0.2 );
|
|
}
|
|
}
|
|
|
|
@keyframes gradientAnim {
|
|
from {
|
|
transform: rotate( 0deg );
|
|
}
|
|
to {
|
|
transform: rotate( 360deg );
|
|
}
|
|
} |