Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieukvogt committed Oct 2, 2024
1 parent caa2313 commit 5572401
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 94 deletions.
16 changes: 0 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,6 @@
</div>
</div>
</div>
<div class="container">
<div class="grid-container" id="bck">
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
<div class="grid-item"></div>
</div>
</div>
</div>
<header>
<div class="fixed-box">
Expand Down
36 changes: 0 additions & 36 deletions index2.html

This file was deleted.

43 changes: 1 addition & 42 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ html {
body {
background-color: var(--color-one);
touch-action: manipulation;
opacity: 0.99;
overscroll-behavior: contain;
min-height: 100vh;
margin: 0;
Expand Down Expand Up @@ -137,7 +136,7 @@ main {
padding: 0 8px;
height: 90px;
width: 50vw;
border: 1px solid var(--background-color-one); /* Line color */
border: 1px solid var(--background-color-one);
transform: translateX(100%);
margin-bottom: 15px;
background-color: var(--color-thirteen);
Expand All @@ -155,46 +154,6 @@ main {
font-size: 40px; /* Font size */
}

.container {
margin: 0 auto;
width: 83%;
padding: 0;
border: 0;
vertical-align: baseline;
}

#bck {
position: fixed;
z-index: -1;
}

.grid-container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 20px;
margin: 0 auto;
width: 83%;
}

.grid-item {
border-left: 1px dotted var(--color-six);
border-right: 1px dotted var(--color-six);
height: 100vh;
transform-origin: bottom center;
transform: scaleY(0);
animation: borderFlow 4s forwards;
animation-delay: 0.5s;
}

@keyframes borderFlow {
from {
transform: scaleY(0);
}
to {
transform: scaleY(1);
}
}

.fixed-box {
position: fixed;
border: 1px solid var(--color-eight);
Expand Down

0 comments on commit 5572401

Please sign in to comment.