Skip to content

Commit

Permalink
chore: blur fade out
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Oct 3, 2024
1 parent 268fede commit e946d0a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
23 changes: 17 additions & 6 deletions static/style/inverted-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -747,19 +747,30 @@
#issues-container::after {
content: "";
display: block;
width: 40px;
height: 40px;
margin: 20px auto;
width: 48px;
height: 48px;
border: 4px solid #00000040;
border-top: 4px solid #000000;
border-radius: 50%;
animation: spin 1s linear infinite;
top: calc(50vh - 48px);
position: fixed;
opacity: 1;
transition: 0.5s all ease-in-out;
right: calc(50% - 48px);
filter: blur(0px);
pointer-events: none;
}
#issues-container.ready::after {
display: none;
opacity: 0;
filter: blur(8px);
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
8 changes: 7 additions & 1 deletion static/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -755,9 +755,15 @@
animation: spin 1s linear infinite;
top: calc(50vh - 48px);
position: fixed;
opacity: 1;
transition: 0.5s all ease-in-out;
right: calc(50% - 48px);
filter: blur(0px);
pointer-events: none;
}
#issues-container.ready::after {
display: none;
opacity: 0;
filter: blur(8px);
}
@keyframes spin {
0% {
Expand Down

0 comments on commit e946d0a

Please sign in to comment.