diff --git a/start.html b/start.html index 2cc7c94..d13bde0 100644 --- a/start.html +++ b/start.html @@ -76,6 +76,26 @@ .tagline strong { color: var(--text); } + /* --- BASICS BANNER --- */ + .basics-banner { + display: block; + text-align: center; + font-family: 'Space Mono', monospace; + font-size: 0.82rem; + color: var(--accent); + text-decoration: none; + padding: 0.7rem 1rem; + border: 1px solid rgba(99,100,255,0.25); + border-radius: var(--radius); + background: rgba(99,100,255,0.06); + transition: all 0.15s; + } + + .basics-banner:hover { + background: rgba(99,100,255,0.12); + border-color: var(--accent); + } + /* --- STEPS --- */ .steps { max-width: 680px; @@ -322,6 +342,8 @@