Typography typographyheadingoutline

Outlined Heading

A bold empty heading with only the stroke/outline visible.

Preview

Outlined Heading

Usage

Copy the full block below to use this component with its imports.

astro
---
import { OutlinedHeading } from 'astro-component-kit';
---

<StrokeHeadingOutline>Content</StrokeHeadingOutline>
--- import { OutlinedHeading } from 'astro-component-kit'; --- <StrokeHeadingOutline>Content</StrokeHeadingOutline>

Manual Installation

If you are not using the npm package, create a new file src/components/lib/OutlinedHeading.astro and paste the following code:

astro
---
---
<h2 class="stroke-h"><slot /></h2>
<style>
  .stroke-h { font-size: 4rem; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s; margin: 0; }
  .stroke-h:hover { -webkit-text-stroke-color: #6366f1; }
  @media (max-width: 768px) { .stroke-h { font-size: 2.5rem; } }
</style>
--- --- <h2 class="stroke-h"><slot /></h2> <style> .stroke-h { font-size: 4rem; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s; margin: 0; } .stroke-h:hover { -webkit-text-stroke-color: #6366f1; } @media (max-width: 768px) { .stroke-h { font-size: 2.5rem; } } </style>

Quick Info

Category
Typography
Filename
OutlinedHeading.astro
Dependencies
None — pure Astro + CSS
Tags
typographyheadingoutline