0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00

feat(animations): provide a default frosted glow animation for the simple theme (#424)

This commit is contained in:
neon_arch 2023-12-11 21:11:48 +03:00
parent 76419a7353
commit c0d2d1ac65

View File

@ -0,0 +1,15 @@
.results_aggregated .result {
margin: 1rem;
padding: 1rem;
border-radius: 1rem;
}
.results_aggregated .result:hover {
box-shadow:
inset 0 0 3rem var(--color-two),
inset 0 0 6rem var(--color-five),
inset 0 0 9rem var(--color-three),
0 0 0.25rem var(--color-two),
0 0 0.5rem var(--color-five),
0 0 0.75rem var(--color-three);
}