Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinVG committed Nov 26, 2024
1 parent d525b37 commit ab15643
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions secret/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ $time-4: 200s;

.particle, .particle:after {
background: transparent;
z-index: 2;
}

.particle:after {
Expand Down Expand Up @@ -119,15 +120,6 @@ $time-4: 200s;
width: 1px;
}

@keyframes animParticle {
from {
transform: translateY(0px);
}
to {
transform: translateY($spacing * -1);
}
}

/* ---STAR EFFECT END--- */

.page-bg, .page-bg-img {
Expand All @@ -142,7 +134,7 @@ $time-4: 200s;
.header {
position: fixed;
top: 0px;
z-index: 2;
z-index: 4;
}

.logo {
Expand All @@ -154,7 +146,7 @@ $time-4: 200s;
margin-left: auto;
margin-right: auto;
padding-left: 25%;
z-index: 2;
z-index: 4;
animation: fadeIn ease 2s;
-webkit-animation: fadeIn ease 2s;
-moz-animation: fadeIn ease 2s;
Expand All @@ -171,18 +163,18 @@ $time-4: 200s;
}

.visor_bottom {
z-index: 1;
z-index: 3;
}

.visor_top {
z-index: 2;
z-index: 4;
}

.footer {
position:fixed;
bottom:0px;
align-content: center;
z-index: 2;
z-index: 4;
}

.maintable {
Expand Down Expand Up @@ -234,4 +226,13 @@ $time-4: 200s;
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@keyframes animParticle {
from {
transform: translateY(0px);
}
to {
transform: translateY($spacing * -1);
}
}

0 comments on commit ab15643

Please sign in to comment.