Skip to content

Commit

Permalink
chore fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rrd108 committed Aug 5, 2024
1 parent 30932ae commit 77b4610
Showing 1 changed file with 61 additions and 61 deletions.
122 changes: 61 additions & 61 deletions docs/styles.css
Original file line number Diff line number Diff line change
@@ -1,70 +1,70 @@
#morphBlur {
display: inline-block;
background-color: #8a25b1;
height: 12em;
aspect-ratio: 1;
position: fixed;
top: 3em;
left: 10%;
z-index: -1;
animation: move 12s ease-in-out infinite alternate;
filter: blur(6em);
}
#morphBlur {
display: inline-block;
background-color: #8a25b1;
height: 12em;
aspect-ratio: 1;
position: fixed;
top: 3em;
left: 10%;
z-index: -1;
animation: move 12s ease-in-out infinite alternate;
filter: blur(6em);
}

@keyframes move {
50% {
top: 12em;
left: 60%;
}
@keyframes move {
50% {
top: 12em;
left: 60%;
}

100% {
top: 20em;
left: 25%;
}
}
100% {
top: 20em;
left: 25%;
}
}

#morphBlur::before,
#morphBlur::after {
content: '';
display: block;
position: absolute;
height: 100%;
width: 100%;
background-color: inherit;
}
#morphBlur::before,
#morphBlur::after {
content: '';
display: block;
position: absolute;
height: 100%;
width: 100%;
background-color: inherit;
}

#morphBlur::before {
top: -12em;
right: 9em;
animation: moveBefore 5s ease-in-out forwards infinite alternate;
}
#morphBlur::before {
top: -12em;
right: 9em;
animation: moveBefore 5s ease-in-out forwards infinite alternate;
}

@keyframes moveBefore {
35% {
top: 12em;
right: 12em;
}
@keyframes moveBefore {
35% {
top: 12em;
right: 12em;
}

100% {
top: 3em;
right: 3em;
}
}
100% {
top: 3em;
right: 3em;
}
}

#morphBlur::after {
bottom: -4em;
left: 19em;
animation: moveAfter 8s ease-in-out forwards infinite alternate;
}
#morphBlur::after {
bottom: -4em;
left: 19em;
animation: moveAfter 8s ease-in-out forwards infinite alternate;
}

@keyframes moveAfter {
30% {
bottom: 12em;
left: 0em;
}
@keyframes moveAfter {
30% {
bottom: 12em;
left: 0em;
}

100% {
bottom: 0em;
left: 22em;
}
}
100% {
bottom: 0em;
left: 22em;
}
}

0 comments on commit 77b4610

Please sign in to comment.