Skip to content

Commit b7c4487

Browse files
authored
Website Update
1 parent 51bb548 commit b7c4487

2 files changed

Lines changed: 46 additions & 4 deletions

File tree

docs/assets/css/style.css

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,6 +1203,7 @@ a {
12031203
transform: translateX(-120%);
12041204
transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
12051205
z-index: -1;
1206+
pointer-events: none;
12061207
}
12071208

12081209
.button.primary:hover {
@@ -1229,6 +1230,7 @@ a {
12291230
transform: translateX(-102%);
12301231
transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
12311232
z-index: -1;
1233+
pointer-events: none;
12321234
}
12331235

12341236
.button.secondary:hover {
@@ -1579,6 +1581,11 @@ a {
15791581

15801582
/* Mobile portrait nav */
15811583
@media (max-width: 980px) and (orientation: portrait) {
1584+
.button {
1585+
touch-action: manipulation;
1586+
-webkit-tap-highlight-color: transparent;
1587+
}
1588+
15821589
.nav {
15831590
top: calc(env(safe-area-inset-top, 0px) + 6px);
15841591
}
@@ -1596,7 +1603,42 @@ a {
15961603
}
15971604

15981605
.hero-layout {
1599-
gap: clamp(1.45rem, 5vw, 1.8rem);
1606+
gap: clamp(1.65rem, 5.8vw, 2rem);
1607+
}
1608+
1609+
.hero-top {
1610+
margin-bottom: 0.28rem;
1611+
}
1612+
1613+
.hero-bottom {
1614+
margin-top: 0.32rem;
1615+
}
1616+
1617+
.hero-title {
1618+
-webkit-transform: translateY(var(--parallax-y));
1619+
transform: translateY(var(--parallax-y));
1620+
will-change: auto;
1621+
}
1622+
1623+
.reveal {
1624+
-webkit-transform: translateY(var(--parallax-y));
1625+
transform: translateY(var(--parallax-y));
1626+
}
1627+
1628+
.js .reveal {
1629+
-webkit-transform: translateY(calc(var(--reveal-distance) + var(--parallax-y)));
1630+
transform: translateY(calc(var(--reveal-distance) + var(--parallax-y)));
1631+
}
1632+
1633+
.js .reveal.is-visible {
1634+
-webkit-transform: translateY(var(--parallax-y));
1635+
transform: translateY(var(--parallax-y));
1636+
}
1637+
1638+
.about-operator-track {
1639+
-webkit-transform: translateY(calc(-1 * var(--about-role-shift)));
1640+
transform: translateY(calc(-1 * var(--about-role-shift)));
1641+
will-change: auto;
16001642
}
16011643
}
16021644

docs/index.html

Lines changed: 3 additions & 3 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=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=20260409c">
11+
<link rel="stylesheet" href="assets/css/style.css?v=20260409d">
1212

1313
<link rel="icon" type="image/svg+xml" href="favicon.svg">
1414
<link rel="icon" sizes="192x192" href="android-chrome-192x192.png">
@@ -57,7 +57,7 @@ <h1 class="hero-title hero-title--pending" aria-label="SHAPE THE UNSEEN." data-h
5757
</h1>
5858

5959
<div class="hero-bottom reveal" data-reveal data-reveal-delay="260" data-parallax="0.03">
60-
<p class="hero-subtitle">An independent creative technology practice led by Jason Lee.</p>
60+
<p class="hero-subtitle">The endless journey of a creative technologist Jason Lee.</p>
6161
<div class="hero-actions">
6262
<a class="button primary" href="#projects">View Current Project</a>
6363
</div>
@@ -121,7 +121,7 @@ <h3>Chords</h3>
121121
<div class="section-head reveal" data-reveal data-parallax="0.02">
122122
<p class="eyebrow">Current Projects</p>
123123
<h2>Live Modules</h2>
124-
<p class="section-note">Add a new project by copying one object block in <code>assets/js/shell.js</code>.</p>
124+
<p class="section-note">Where creative intent meets structural logic.</p>
125125
</div>
126126
<div id="project-track" class="project-track"></div>
127127
</div>

0 commit comments

Comments
 (0)