-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
61 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |