Skip to content

Commit 68d4c2d

Browse files
author
Your Name
committed
Improve slashed zero styling with CSS class and remove explanatory text
1 parent ee2d8ba commit 68d4c2d

1 file changed

Lines changed: 20 additions & 2 deletions

File tree

index.html

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,24 @@
474474
margin: 0 0.25rem;
475475
}
476476

477+
/* Slashed Zero Style */
478+
.slashed-zero {
479+
position: relative;
480+
display: inline-block;
481+
}
482+
483+
.slashed-zero::after {
484+
content: '';
485+
position: absolute;
486+
top: 50%;
487+
left: 0;
488+
right: 0;
489+
height: 2.5px;
490+
background: currentColor;
491+
transform: translateY(-50%) rotate(-45deg);
492+
pointer-events: none;
493+
}
494+
477495
/* Icon Styles */
478496
.icon {
479497
display: inline-block;
@@ -867,10 +885,10 @@ <h2 style="font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-primary); d
867885
<path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/>
868886
</svg>
869887
</span>
870-
Introducing Agent <span style="position: relative; display: inline-block; font-family: 'Courier New', monospace;">0<span style="position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: var(--accent); transform: translateY(-50%) rotate(-45deg); pointer-events: none;"></span></span>
888+
Introducing Agent <span class="slashed-zero" style="color: var(--accent);">0</span>
871889
</h2>
872890
<p style="font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.8; text-align: center;">
873-
Your AI coding assistant just got smarter. Agent <span style="position: relative; display: inline-block; font-family: 'Courier New', monospace;">0<span style="position: absolute; top: 50%; left: 0; right: 0; height: 1.5px; background: var(--accent); transform: translateY(-50%) rotate(-45deg); pointer-events: none;"></span></span> is PersistenceAI's proprietary intelligent enhancement layer that learns from every session, continuously improving code quality, reducing errors, and speeding up your workflow.
891+
Your AI coding assistant just got smarter. Agent <span class="slashed-zero" style="color: var(--accent);">0</span> is PersistenceAI's proprietary intelligent enhancement layer that learns from every session, continuously improving code quality, reducing errors, and speeding up your workflow.
874892
</p>
875893
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 2rem 0;">
876894
<div class="feature-card" style="text-align: center; padding: 2rem;">

0 commit comments

Comments
 (0)