Merge branch 'dev' into main

This commit is contained in:
Sped0n
2023-10-29 22:15:47 +08:00
31 changed files with 1375 additions and 314 deletions

View File

@@ -1,20 +0,0 @@
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
user-select: none;
background: white;
}
html,
body {
overscroll-behavior-y: none;
}
a,
button {
cursor: pointer;
}

View File

@@ -1,21 +0,0 @@
.cursor {
position: fixed;
z-index: var(--z-cursor);
top: 0;
left: 0;
display: none;
cursor: none;
pointer-events: none;
color: white;
mix-blend-mode: difference;
}
.active {
display: block;
}
.cursorInner {
transform: translate3d(-50%, -50%, 0);
}

View File

@@ -1,12 +0,0 @@
@import '_core/mixins';
:root {
--window-height: 100vh;
--nav-height: 2rem;
--space-standard: 0.625rem;
--z-curtain: 200;
--z-nav-gallery: 500;
--z-cursor: 600;
--z-nav: 800;
}

View File

@@ -1,13 +0,0 @@
@charset "utf-8";
@import '_core/reset';
@import '_core/font';
@import '_core/typography';
@import '_core/mixins';
@import '_variables';
@import '_core/base';
@import '_partial/customCursor';
@import '_partial/nav';
@import '_partial/stage';
@import '_partial/stageNav';