main
Midnight 3 years ago
parent eee673329a
commit 1b96811d5f

@ -22,6 +22,9 @@ export default function Index() {
<div className={styles.leftsidetint + " slide-in-down"}> <div className={styles.leftsidetint + " slide-in-down"}>
<a href="/"><img src="/logo.png"/></a> <a href="/"><img src="/logo.png"/></a>
<footer>
<a href="https://dubbelnull.com/" target="_blank">Made by DubbelNull</a> with NextJS and Vercel
</footer>
</div> </div>
<div className={styles.topcontainerbackg + " slide-in-right"}></div> <div className={styles.topcontainerbackg + " slide-in-right"}></div>
@ -83,10 +86,6 @@ export default function Index() {
</a> </a>
</div> </div>
</div> </div>
<footer className={styles.topcontent}>
<a href="https://dubbelnull.com/" target="_blank">Made by DubbelNull</a> with NextJS and Vercel
</footer>
</div> </div>
</div> </div>
) )

@ -70,20 +70,31 @@
width: 10vw; width: 10vw;
height: 100vh; height: 100vh;
background-color: #1a1a1a; background-color: #1a1a1a;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.leftsidetint footer {
font-size: var(--font-sm);
padding: var(--padding-lg);
} }
/* items */ /* items */
.links {
display: flex;
flex-grow: 1;
align-items: center;
}
.links div { .links div {
flex-wrap: wrap; width: 100%;
font-size: 1.5em; font-size: 1.5em;
flex-grow: 1;
display: grid; display: grid;
grid-template-columns: 25% 25% 25%; grid-template-columns: 25% 25% 25%;
gap: var(--padding-lg); gap: var(--padding-lg);
justify-content: start;
align-items: center;
} }
.links div a { .links div a {

@ -91,13 +91,12 @@ img {
animation-name: slide-in-right; animation-name: slide-in-right;
animation-duration: 1s; animation-duration: 1s;
margin-right: 10vw; margin-right: 10vw;
margin-left: -10vw;
animation-timing-function: ease-in-out; animation-timing-function: ease-in-out;
} }
@keyframes slide-in-right { @keyframes slide-in-right {
0% { 0% {
margin-right: 100vw; margin-right: 150vw;
} }
100% { 100% {
margin-right: 10vw; margin-right: 10vw;
@ -107,13 +106,16 @@ img {
.slide-in-left { .slide-in-left {
animation-name: slide-in-left; animation-name: slide-in-left;
animation-duration: 1s; animation-duration: 1.2s;
margin-left: 0vw; margin-left: 0vw;
animation-timing-function: ease-in-out; animation-timing-function: ease-in-out;
} }
@keyframes slide-in-left { @keyframes slide-in-left {
0% { 0% {
margin-left: 100vw;
}
25% {
margin-left: 100vw; margin-left: 100vw;
} }
100% { 100% {
@ -124,13 +126,16 @@ img {
.slide-in-up { .slide-in-up {
animation-name: slide-in-up; animation-name: slide-in-up;
animation-duration: 1s; animation-duration: 1.4s;
margin-top: 0vh; margin-top: 0vh;
animation-timing-function: ease-in-out; animation-timing-function: ease-in-out;
} }
@keyframes slide-in-up { @keyframes slide-in-up {
0% { 0% {
margin-top: 100vh;
}
25% {
margin-top: 100vh; margin-top: 100vh;
} }
100% { 100% {
@ -140,7 +145,7 @@ img {
.slide-in-down { .slide-in-down {
animation-name: slide-in-down; animation-name: slide-in-down;
animation-duration: 1s; animation-duration: 0.4s;
overflow-y: hidden; overflow-y: hidden;
top: 0vh; top: 0vh;
animation-timing-function: ease-in-out; animation-timing-function: ease-in-out;

Loading…
Cancel
Save