Skip to content

Commit

Permalink
content
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieukvogt committed Sep 29, 2024
1 parent 0982775 commit d65fdd5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
--color-eight: #f2f2f2;
--color-nine: #070707;
--color-ten: rgba(0, 0, 0, 0.5);
--color-eleven: rgba(7, 7, 7, 0.98);
overscroll-behavior: contain;
}

body.dark-mode {
Expand All @@ -26,6 +28,7 @@ body.dark-mode {
--color-eight: #f2f2f2;
--color-nine: #eaeaea;
--color-ten: rgba(0, 0, 0, 0.7);
--color-eleven: rgba(240, 240, 240, 0.98);
}

* {
Expand All @@ -41,13 +44,18 @@ html {
scroll-behavior: smooth;
background-color: var(--color-one);
font-family: monospace, 'Times New Roman', Times, serif;
overscroll-behavior: contain;
}

body {
background-color: var(--color-one);
touch-action: manipulation;
opacity: 0.99;
overscroll-behavior: contain;
min-height: 100vh;
margin: 0;
overscroll-behavior: contain;
min-height: 100%;
}

body.no-scroll {
Expand Down Expand Up @@ -104,7 +112,6 @@ header, main {
transform: translateY(-100%); /* Start off-screen above the viewport */
}


.container {
margin: 0 auto;
width: 83%;
Expand All @@ -127,8 +134,8 @@ header, main {
}

.grid-item {
border-left: 1px dashed var(--color-six);
border-right: 1px dashed var(--color-six);
border-left: 1px dotted var(--color-six);
border-right: 1px dotted var(--color-six);
height: 100vh;
transform-origin: bottom center;
transform: scaleY(0);
Expand Down

0 comments on commit d65fdd5

Please sign in to comment.