Skip to content

Commit

Permalink
Nice animation when the page finishes loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Valer100 committed Aug 6, 2024
1 parent 4a1a205 commit 94f03ff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ body {
font-family: Inter;
color: #FFFFFF;
margin: 0px;
overflow-x: hidden;
}

body::-webkit-scrollbar {
display: none;
}

html {
Expand Down Expand Up @@ -49,6 +54,7 @@ iframe {
background-color: #091311;
position: sticky;
top: 0;
z-index: 100;
}

.content {
Expand Down Expand Up @@ -393,4 +399,13 @@ tr:last-child th:last-child {
display: inline-flex;
vertical-align: text-bottom;
color: #96afa7;
}

@keyframes animation {
from { opacity: 0; }
to { opacity: 1; }
}

body *:not(.titlebar, .titlebar *, .dino, .tooltip1) {
animation: animation 0.5s forwards;
}

0 comments on commit 94f03ff

Please sign in to comment.