Skip to content

Commit e8fbdfb

Browse files
authored
Website Update
1 parent 928aab9 commit e8fbdfb

3 files changed

Lines changed: 58 additions & 45 deletions

File tree

docs/assets/css/style.css

Lines changed: 31 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
--menu-thumb-bg-default: rgba(255,255,255,.16);
2626
--menu-thumb-bg-press: rgba(255,255,255,.24);
2727
--accent-orange: #ff9d4d;
28+
--accent-script-color: #df8d5d;
2829
--hero-outline-color: rgba(243, 242, 238, 0.96);
2930
--hero-fill-color: rgba(243, 242, 238, 0.995);
3031
--nav-backdrop: linear-gradient(
@@ -220,6 +221,18 @@ a {
220221
text-transform: uppercase;
221222
}
222223

224+
.tagline-script {
225+
display: inline-block;
226+
font-family: "Rock Salt", cursive;
227+
font-size: 0.72em;
228+
font-weight: 400;
229+
line-height: 1.08;
230+
letter-spacing: 0.01em;
231+
text-transform: none;
232+
white-space: nowrap;
233+
color: var(--accent-script-color);
234+
}
235+
223236
.section-note {
224237
margin: 1rem 0 0;
225238
max-width: 62ch;
@@ -1282,10 +1295,10 @@ a {
12821295
line-height: 1.82;
12831296
}
12841297

1285-
.about-operator-title {
1286-
--about-role-width: 8.6ch;
1287-
--about-role-height: 1.08em;
1288-
--about-role-shift: 0px;
1298+
.about-creator-title {
1299+
--about-creator-width: 8.6ch;
1300+
--about-creator-height: 1.08em;
1301+
--about-creator-shift: 0px;
12891302

12901303
display: flex;
12911304
flex-wrap: wrap;
@@ -1294,57 +1307,57 @@ a {
12941307
max-width: 100%;
12951308
}
12961309

1297-
.about-operator-prefix,
1298-
.about-operator-suffix,
1299-
.about-operator-roller {
1310+
.about-creator-prefix,
1311+
.about-creator-suffix,
1312+
.about-creator-roller {
13001313
display: inline-flex;
13011314
align-items: baseline;
13021315
}
13031316

1304-
.about-operator-prefix,
1305-
.about-operator-suffix {
1317+
.about-creator-prefix,
1318+
.about-creator-suffix {
13061319
white-space: nowrap;
13071320
}
13081321

1309-
.about-operator-roller {
1322+
.about-creator-roller {
13101323
flex: 0 0 auto;
13111324
min-width: 0;
13121325
}
13131326

1314-
.about-operator-viewport {
1327+
.about-creator-viewport {
13151328
position: relative;
13161329
display: block;
1317-
width: var(--about-role-width);
1318-
height: var(--about-role-height);
1330+
width: var(--about-creator-width);
1331+
height: var(--about-creator-height);
13191332
overflow: hidden;
13201333
transition: width 620ms cubic-bezier(0.22, 1, 0.36, 1);
13211334
}
13221335

1323-
.about-operator-track {
1336+
.about-creator-track {
13241337
display: flex;
13251338
flex-direction: column;
13261339
align-items: flex-start;
13271340
width: max-content;
1328-
transform: translateY(calc(-1 * var(--about-role-shift)));
1341+
transform: translateY(calc(-1 * var(--about-creator-shift)));
13291342
transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
13301343
will-change: transform;
13311344
-webkit-user-select: none;
13321345
user-select: none;
13331346
}
13341347

1335-
.about-operator-word {
1348+
.about-creator-word {
13361349
position: relative;
13371350
display: inline-flex;
13381351
align-items: center;
13391352
align-self: flex-start;
1340-
height: var(--about-role-height);
1353+
height: var(--about-creator-height);
13411354
white-space: nowrap;
13421355
line-height: 1;
13431356
-webkit-user-select: none;
13441357
user-select: none;
13451358
}
13461359

1347-
.about-operator-word.is-active {
1360+
.about-creator-word.is-active {
13481361
-webkit-user-select: text;
13491362
user-select: text;
13501363
}

docs/assets/js/shell.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,15 +1124,15 @@
11241124
}
11251125
}
11261126

1127-
function initAboutOperator() {
1128-
const title = document.querySelector(".about-operator-title");
1127+
function initAboutCreator() {
1128+
const title = document.querySelector(".about-creator-title");
11291129
if (!title) {
11301130
return;
11311131
}
11321132

1133-
const viewport = title.querySelector(".about-operator-viewport");
1134-
const track = title.querySelector(".about-operator-track");
1135-
const words = Array.from(title.querySelectorAll(".about-operator-word"));
1133+
const viewport = title.querySelector(".about-creator-viewport");
1134+
const track = title.querySelector(".about-creator-track");
1135+
const words = Array.from(title.querySelectorAll(".about-creator-word"));
11361136
if (!viewport || !track || !words.length) {
11371137
return;
11381138
}
@@ -1168,7 +1168,7 @@
11681168
);
11691169

11701170
metrics = { height, widths };
1171-
title.style.setProperty("--about-role-height", `${height}px`);
1171+
title.style.setProperty("--about-creator-height", `${height}px`);
11721172
return metrics;
11731173
};
11741174

@@ -1203,8 +1203,8 @@
12031203
setImmediateTransitions(true);
12041204
}
12051205

1206-
title.style.setProperty("--about-role-width", `${width}px`);
1207-
title.style.setProperty("--about-role-shift", `${shift}px`);
1206+
title.style.setProperty("--about-creator-width", `${width}px`);
1207+
title.style.setProperty("--about-creator-shift", `${shift}px`);
12081208

12091209
if (immediate) {
12101210
void title.offsetHeight;
@@ -1442,7 +1442,7 @@
14421442
initSectionDepth();
14431443
initReveal();
14441444
initHeroIntro();
1445-
initAboutOperator();
1445+
initAboutCreator();
14461446
initParallax();
14471447
initHoverTracking();
14481448

docs/index.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10-
<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=20260409h">
10+
<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=20260409i">
1212

1313
<link rel="icon" type="image/svg+xml" href="favicon.svg">
1414
<link rel="icon" sizes="192x192" href="android-chrome-192x192.png">
@@ -69,21 +69,21 @@ <h1 class="hero-title hero-title--pending" aria-label="SHAPE THE UNSEEN." data-h
6969
<div class="container">
7070
<div class="section-head reveal" data-reveal data-parallax="0.02">
7171
<p class="eyebrow">About Me</p>
72-
<h2 class="about-operator-title" aria-label="Jason Lee, The Operator Behind Modelized">
73-
<span class="about-operator-prefix" aria-hidden="true">Jason Lee, The</span>
74-
<span class="about-operator-roller" aria-hidden="true">
75-
<span class="about-operator-viewport">
76-
<span class="about-operator-track">
77-
<span class="about-operator-word" data-word="Developer">Developer</span>
78-
<span class="about-operator-word" data-word="Engineer">Engineer</span>
79-
<span class="about-operator-word" data-word="Designer">Designer</span>
80-
<span class="about-operator-word" data-word="Artist">Artist</span>
81-
<span class="about-operator-word" data-word="Researcher">Researcher</span>
82-
<span class="about-operator-word about-operator-word--final" data-word="Operator">Operator</span>
72+
<h2 class="about-creator-title" aria-label="Jason Lee, The Creator Behind Modelized">
73+
<span class="about-creator-prefix" aria-hidden="true">Jason Lee, The</span>
74+
<span class="about-creator-roller" aria-hidden="true">
75+
<span class="about-creator-viewport">
76+
<span class="about-creator-track">
77+
<span class="about-creator-word tagline-script" data-word="Developer">Developer</span>
78+
<span class="about-creator-word tagline-script" data-word="Engineer">Engineer</span>
79+
<span class="about-creator-word tagline-script" data-word="Designer">Designer</span>
80+
<span class="about-creator-word tagline-script" data-word="Artist">Artist</span>
81+
<span class="about-creator-word tagline-script" data-word="Researcher">Researcher</span>
82+
<span class="about-creator-word about-creator-word--final tagline-script" data-word="Creator">Creator</span>
8383
</span>
8484
</span>
8585
</span>
86-
<span class="about-operator-suffix" aria-hidden="true">Behind Modelized</span>
86+
<span class="about-creator-suffix" aria-hidden="true">Behind Modelized</span>
8787
</h2>
8888
</div>
8989
<p class="about-copy reveal" data-reveal>
@@ -96,7 +96,7 @@ <h2 class="about-operator-title" aria-label="Jason Lee, The Operator Behind Mode
9696
<div class="container">
9797
<div class="section-head reveal" data-reveal data-parallax="0.02">
9898
<p class="eyebrow">Core Disciplines</p>
99-
<h2>Smooth Operator Across The Entire Stack</h2>
99+
<h2><span class="tagline-script">Smooth Operator</span> Across The Entire Stack</h2>
100100
</div>
101101

102102
<div class="discipline-grid">
@@ -120,7 +120,7 @@ <h3>Chords</h3>
120120
<div class="container projects-shell">
121121
<div class="section-head reveal" data-reveal data-parallax="0.02">
122122
<p class="eyebrow">Current Projects</p>
123-
<h2>Live Modules</h2>
123+
<h2><span class="tagline-script">Live</span> Modules</h2>
124124
<p class="section-note">Where creative intent meets structural logic.</p>
125125
</div>
126126
<div id="project-track" class="project-track"></div>
@@ -152,7 +152,7 @@ <h2>Live Modules</h2>
152152
<div class="container">
153153
<div class="section-head reveal" data-reveal data-parallax="0.02">
154154
<p class="eyebrow">Social Connect</p>
155-
<h2>Open Repositories and Direct Channels</h2>
155+
<h2>A <span class="tagline-script">Closer Look</span> At The Path</h2>
156156
</div>
157157
<p class="about-copy reveal" data-reveal>
158158
This section anchors the public-facing routes around Modelized: open repositories, live links, and direct channels that extend the work beyond the portfolio surface.
@@ -163,6 +163,6 @@ <h2>Open Repositories and Direct Channels</h2>
163163

164164
<div id="footer-slot"></div>
165165

166-
<script src="assets/js/shell.js?v=20260409h" defer></script>
166+
<script src="assets/js/shell.js?v=20260409i" defer></script>
167167
</body>
168168
</html>

0 commit comments

Comments
 (0)