Skip to content

Commit aef598a

Browse files
authored
Website Update
1 parent 914b464 commit aef598a

3 files changed

Lines changed: 20 additions & 16 deletions

File tree

docs/assets/css/style.css

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,17 @@ body {
8383
body::before {
8484
content: "";
8585
position: fixed;
86-
inset: 0;
86+
top: calc(env(safe-area-inset-top, 0px) * -1 - 24px);
87+
right: 0;
88+
bottom: -24px;
89+
left: 0;
8790
z-index: 0;
8891
pointer-events: none;
8992
background:
90-
radial-gradient(72% 58% at 22% 26%, rgba(255, 157, 77, 0.19), rgba(255, 157, 77, 0) 70%),
91-
radial-gradient(64% 54% at 78% 34%, rgba(82, 104, 255, 0.18), rgba(82, 104, 255, 0) 72%),
92-
radial-gradient(78% 66% at 56% 100%, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0) 72%);
93+
radial-gradient(78% 62% at 22% 24%, rgba(224, 124, 54, 0.17), rgba(224, 124, 54, 0) 74%),
94+
radial-gradient(70% 56% at 79% 34%, rgba(66, 88, 201, 0.16), rgba(66, 88, 201, 0) 76%),
95+
radial-gradient(86% 72% at 56% 100%, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0) 74%),
96+
linear-gradient(180deg, rgba(6, 6, 8, 0.1) 0%, rgba(6, 6, 8, 0.035) 40%, rgba(6, 6, 8, 0.16) 100%);
9397
opacity: var(--site-atmosphere-opacity);
9498
will-change: opacity;
9599
transform: translateZ(0);
@@ -1027,11 +1031,11 @@ a {
10271031
--hero-stage-offset: var(--page-top-offset);
10281032
--hero-top-pad: clamp(1.3rem, 1.9vw, 2rem);
10291033
--hero-stage-bottom-pad: clamp(1.55rem, 2.35vw, 2.25rem);
1030-
--hero-copy-bottom-offset: clamp(2.45rem, 3.35vw, 3.3rem);
1034+
--hero-copy-bottom-offset: clamp(2.72rem, 3.6vw, 3.55rem);
10311035
--hero-stage-min: 0px;
10321036
--home-transition-span: clamp(9rem, 16vh, 13rem);
10331037
--home-transition-distance: var(--home-transition-span);
1034-
--hero-image-anchor-y: 46.35%;
1038+
--hero-image-anchor-y: 45.65%;
10351039
--hero-stage-height: calc(var(--hero-initial-viewport-height, 100svh) - var(--hero-stage-offset) - var(--hero-top-pad) - var(--hero-stage-bottom-pad));
10361040
--hero-stage-reference: max(var(--hero-stage-height), var(--hero-stage-min));
10371041
--hero-visual-height: calc(var(--hero-top-pad) + var(--hero-stage-reference) + var(--hero-stage-bottom-pad));
@@ -2401,7 +2405,7 @@ body.page-home #about {
24012405
.hero {
24022406
--hero-top-pad: clamp(1rem, 1.7vw, 1.4rem);
24032407
--hero-stage-bottom-pad: clamp(1.4rem, 2.15vw, 1.95rem);
2404-
--hero-copy-bottom-offset: clamp(2.05rem, 3.05vw, 2.6rem);
2408+
--hero-copy-bottom-offset: clamp(2.28rem, 3.3vw, 2.85rem);
24052409
}
24062410

24072411
.hero-copy {
@@ -2467,11 +2471,11 @@ body.page-home #about {
24672471
.hero {
24682472
--hero-top-pad: 1.05rem;
24692473
--hero-stage-bottom-pad: 1.1rem;
2470-
--hero-copy-bottom-offset: 1.98rem;
2474+
--hero-copy-bottom-offset: 2.22rem;
24712475
--home-transition-span: clamp(8.5rem, 15vh, 11.5rem);
24722476
--hero-image-size: clamp(29rem, calc(var(--hero-stage-reference) * 0.96), 52rem);
24732477
--hero-image-max-inline: 110vw;
2474-
--hero-image-anchor-y: 42.15%;
2478+
--hero-image-anchor-y: 41.35%;
24752479
--hero-tagline-base-size: clamp(2.25rem, min(calc(var(--hero-stage-reference) * 0.1), 11.2cqi), 3.35rem);
24762480
}
24772481

docs/assets/js/shell.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,10 +1291,10 @@
12911291
stageReference * 1.78,
12921292
viewportHeight * 1.42
12931293
);
1294-
lowerLayerStartShift = Math.min(Math.max(viewportHeight * 0.016, 8), 16);
1294+
lowerLayerStartShift = Math.min(Math.max(viewportHeight * 0.014, 6), 12);
12951295
const lowerLayerOverlap = Math.max(
1296-
Math.min(viewportHeight * 0.94, stageReference * 1.2),
1297-
viewportHeight * 0.78
1296+
Math.min(viewportHeight * 1.02, stageReference * 1.26),
1297+
viewportHeight * 0.86
12981298
);
12991299
hero.style.setProperty("--home-transition-distance", `${transitionDistance.toFixed(2)}px`);
13001300
root.style.setProperty("--home-next-layer-overlap", `${lowerLayerOverlap.toFixed(2)}px`);
@@ -1323,8 +1323,8 @@
13231323
const silhouetteFade = 1 - range(progress, 0.34, 0.58, easeInOutCubic);
13241324
const silhouetteOpacity = 0.74 * silhouetteAppear * silhouetteFade;
13251325
const heroUnitOpacity = Math.max(baseFade, silhouetteOpacity);
1326-
const atmosphereProgress = range(progress, 0.62, 0.84, easeInOutCubic);
1327-
const nextLayerProgress = range(progress, 0.76, 0.94, easeInOutCubic);
1326+
const atmosphereProgress = range(progress, 0.64, 0.96, easeInOutCubic);
1327+
const nextLayerProgress = range(progress, 0.64, 0.9, easeInOutCubic);
13281328
const backdropSuppression = progress < 0.88 ? "1" : "0";
13291329

13301330
root.style.setProperty("--home-ui-opacity", Math.max(0, uiOpacity).toFixed(4));

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1010
<link href="https://fonts.googleapis.com/css2?family=Rock+Salt&family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;700;800&display=swap" rel="stylesheet">
11-
<link rel="stylesheet" href="assets/css/style.css?v=20260418f">
11+
<link rel="stylesheet" href="assets/css/style.css?v=20260418g">
1212

1313
<link rel="icon" type="image/svg+xml" href="favicon.svg">
1414
<link rel="icon" sizes="192x192" href="android-chrome-192x192.png">
@@ -228,6 +228,6 @@ <h2>A <span class="tagline-script">Closer Look</span> At The Path</h2>
228228

229229
<div id="footer-slot"></div>
230230

231-
<script src="assets/js/shell.js?v=20260418f" defer></script>
231+
<script src="assets/js/shell.js?v=20260418g" defer></script>
232232
</body>
233233
</html>

0 commit comments

Comments
 (0)