Skip to content

Commit f1e5b3b

Browse files
authored
Website Update
1 parent 08ac8bb commit f1e5b3b

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

docs/assets/css/style.css

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,8 +1572,10 @@ a {
15721572
0 6px 16px var(--discipline-shadow);
15731573
overflow: hidden;
15741574
transition:
1575-
transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
1576-
box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
1575+
transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
1576+
box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1);
1577+
transform: translateZ(0) scale(1);
1578+
backface-visibility: hidden;
15771579
}
15781580

15791581
.discipline-stack-card__surface::before {
@@ -1757,12 +1759,12 @@ a {
17571759
}
17581760

17591761
@media (hover:hover) and (pointer:fine) {
1762+
.discipline-stack-card.is-active .discipline-stack-card__surface {
1763+
will-change: transform;
1764+
}
1765+
17601766
.discipline-stack-card.is-active:hover .discipline-stack-card__surface {
1761-
transform: scale(1.012);
1762-
box-shadow:
1763-
inset 0 0 0 1px var(--discipline-edge),
1764-
0 18px 32px rgba(0, 0, 0, 0.18),
1765-
0 8px 20px var(--discipline-shadow);
1767+
transform: translateZ(0) scale(1.016);
17661768
}
17671769
}
17681770

docs/assets/js/shell.js

Lines changed: 2 additions & 2 deletions
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 = '20260410i';
6+
const assetVersion = '20260410j';
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`;
@@ -51,7 +51,7 @@
5151
"Diving into the core of operating systems and device environments. My work involves Custom ROM development and low-level system exploration, studying how device architectures function from the inside out to build highly optimized environments.",
5252
arsenalKind: "engineering",
5353
arsenal: [
54-
{ iconSvg: iconSvg('<path d="M6.3 7.2h7.4a1.8 1.8 0 0 1 1.8 1.8v3a1.8 1.8 0 0 1-1.8 1.8H6.3A1.8 1.8 0 0 1 4.5 12V9a1.8 1.8 0 0 1 1.8-1.8Z"/><path d="m7.4 6.1-1-1.4"/><path d="m12.6 6.1 1-1.4"/><circle cx="8.8" cy="10" r=".44" fill="currentColor" stroke="none"/><circle cx="11.2" cy="10" r=".44" fill="currentColor" stroke="none"/><path d="M7.6 13.8v1.5M12.4 13.8v1.5"/><path d="M4.5 9.5H3.3M16.7 9.5h-1.2"/>'), label: "Custom ROM Building" },
54+
{ iconSvg: iconSvg('<path d="M5.2 12a4.8 4.8 0 0 1 9.6 0"/><path d="m7.1 7.7-1.05-1.55"/><path d="m12.9 7.7 1.05-1.55"/><circle cx="8.7" cy="10.2" r=".46" fill="currentColor" stroke="none"/><circle cx="11.3" cy="10.2" r=".46" fill="currentColor" stroke="none"/>'), label: "Custom ROM Building" },
5555
{ iconSvg: iconSvg('<path d="M10 4.2 14 5.7v3.8c0 2.6-1.6 4.8-4 5.9-2.4-1.1-4-3.3-4-5.9V5.7L10 4.2Z"/><path d="m12.7 12.7 2.6 2.6"/><circle cx="12.1" cy="12.1" r="2.3"/>'), label: "iOS Security Analysis" },
5656
{ iconSvg: iconSvg('<path d="m6.4 6.2-3.1 3.8 3.1 3.8"/><path d="m13.6 6.2 3.1 3.8-3.1 3.8"/><path d="m11 4.8-2 10.4"/>'), label: "Reverse Engineering" },
5757
{ iconSvg: iconSvg('<rect x="4.1" y="4.5" width="11.8" height="8.2" rx="1.8"/><path d="M6.5 15.5h7"/><path d="M8 12.7v2.8M12 12.7v2.8"/>'), label: "System Virtualization" }

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=20260410i">
11+
<link rel="stylesheet" href="assets/css/style.css?v=20260410j">
1212

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

169169
<div id="footer-slot"></div>
170170

171-
<script src="assets/js/shell.js?v=20260410i" defer></script>
171+
<script src="assets/js/shell.js?v=20260410j" defer></script>
172172
</body>
173173
</html>

0 commit comments

Comments
 (0)