Skip to content

Commit dfcb6e0

Browse files
authored
Website Update
1 parent 6fe40b5 commit dfcb6e0

3 files changed

Lines changed: 14 additions & 18 deletions

File tree

docs/assets/css/style.css

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,10 @@ body.page-home {
8787
}
8888

8989
.site-atmosphere {
90-
position: absolute;
91-
inset: 0 0 auto;
90+
position: sticky;
91+
top: 0;
9292
height: 100svh;
93+
margin-bottom: -100svh;
9394
z-index: 0;
9495
pointer-events: none;
9596
isolation: isolate;
@@ -98,13 +99,8 @@ body.page-home {
9899
}
99100

100101
.site-atmosphere__layer {
101-
position: sticky;
102-
top: 0;
103-
left: 0;
104-
width: 100%;
105-
height: 100svh;
106-
min-height: 100svh;
107-
max-height: 100svh;
102+
position: absolute;
103+
inset: 0;
108104
opacity: var(--site-atmosphere-opacity);
109105
will-change: opacity;
110106
isolation: isolate;
@@ -127,8 +123,8 @@ body.page-home {
127123
-webkit-transform: translateX(-50%);
128124
pointer-events: none;
129125
background:
130-
radial-gradient(74% 58% at 37% 30%, rgba(255, 157, 77, 0.13) 0%, rgba(255, 157, 77, 0.094) 28%, rgba(255, 157, 77, 0.03) 52%, rgba(255, 157, 77, 0) 72%),
131-
radial-gradient(68% 54% at 63% 33%, rgba(82, 104, 255, 0.12) 0%, rgba(82, 104, 255, 0.086) 28%, rgba(82, 104, 255, 0.026) 52%, rgba(82, 104, 255, 0) 72%);
126+
radial-gradient(74% 58% at 37% 30%, rgba(255, 157, 77, 0.18) 0%, rgba(255, 157, 77, 0.13) 28%, rgba(255, 157, 77, 0.048) 52%, rgba(255, 157, 77, 0) 72%),
127+
radial-gradient(68% 54% at 63% 33%, rgba(82, 104, 255, 0.165) 0%, rgba(82, 104, 255, 0.118) 28%, rgba(82, 104, 255, 0.042) 52%, rgba(82, 104, 255, 0) 72%);
132128
background-repeat: no-repeat;
133129
background-size:
134130
var(--site-atmosphere-width) 100%,
@@ -1010,8 +1006,8 @@ a {
10101006
.site-atmosphere__layer::before {
10111007
--site-atmosphere-width: 174vw;
10121008
background:
1013-
radial-gradient(78% 62% at 39% 31%, rgba(255, 157, 77, 0.13) 0%, rgba(255, 157, 77, 0.094) 28%, rgba(255, 157, 77, 0.03) 52%, rgba(255, 157, 77, 0) 72%),
1014-
radial-gradient(72% 58% at 61% 34%, rgba(82, 104, 255, 0.12) 0%, rgba(82, 104, 255, 0.086) 28%, rgba(82, 104, 255, 0.026) 52%, rgba(82, 104, 255, 0) 72%);
1009+
radial-gradient(78% 62% at 39% 31%, rgba(255, 157, 77, 0.18) 0%, rgba(255, 157, 77, 0.13) 28%, rgba(255, 157, 77, 0.048) 52%, rgba(255, 157, 77, 0) 72%),
1010+
radial-gradient(72% 58% at 61% 34%, rgba(82, 104, 255, 0.165) 0%, rgba(82, 104, 255, 0.118) 28%, rgba(82, 104, 255, 0.042) 52%, rgba(82, 104, 255, 0) 72%);
10151011
background-repeat: no-repeat;
10161012
background-size:
10171013
var(--site-atmosphere-width) 100%,
@@ -2673,8 +2669,8 @@ body.page-home #about {
26732669

26742670
.site-atmosphere__layer::before {
26752671
background:
2676-
radial-gradient(80% 64% at 40% 32%, rgba(255, 157, 77, 0.13) 0%, rgba(255, 157, 77, 0.094) 28%, rgba(255, 157, 77, 0.03) 52%, rgba(255, 157, 77, 0) 72%),
2677-
radial-gradient(74% 60% at 60% 35%, rgba(82, 104, 255, 0.12) 0%, rgba(82, 104, 255, 0.086) 28%, rgba(82, 104, 255, 0.026) 52%, rgba(82, 104, 255, 0) 72%);
2672+
radial-gradient(80% 64% at 40% 32%, rgba(255, 157, 77, 0.18) 0%, rgba(255, 157, 77, 0.13) 28%, rgba(255, 157, 77, 0.048) 52%, rgba(255, 157, 77, 0) 72%),
2673+
radial-gradient(74% 60% at 60% 35%, rgba(82, 104, 255, 0.165) 0%, rgba(82, 104, 255, 0.118) 28%, rgba(82, 104, 255, 0.042) 52%, rgba(82, 104, 255, 0) 72%);
26782674
background-repeat: no-repeat;
26792675
background-size:
26802676
var(--site-atmosphere-width) 100%,

docs/assets/js/shell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
const body = document.body;
55
const base = (body?.getAttribute('data-base') || '.').trim();
6-
const assetVersion = '20260419b';
6+
const assetVersion = '20260422a';
77
const prefersReducedMotion = window.matchMedia("(prefers-reduced-motion: reduce)").matches;
88
const SETTLE_PASS_DELAYS = [0, 140, 320, 560];
99
const simpleIcon = (name) => `https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/${name}.svg`;

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=20260419b">
11+
<link rel="stylesheet" href="assets/css/style.css?v=20260422a">
1212

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

233233
<div id="footer-slot"></div>
234234

235-
<script src="assets/js/shell.js?v=20260419b" defer></script>
235+
<script src="assets/js/shell.js?v=20260422a" defer></script>
236236
</body>
237237
</html>

0 commit comments

Comments
 (0)