From b630e407e2da1e8ea66a2e538e69aa99eb0618ae Mon Sep 17 00:00:00 2001 From: Amoelle Date: Mon, 21 Jul 2025 23:00:50 +0300 Subject: [PATCH] cleanup --- styles.css | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/styles.css b/styles.css index b124347..95dcfdf 100644 --- a/styles.css +++ b/styles.css @@ -1,6 +1,3 @@ -/* =============================== - Theme Variables - =============================== */ :root { --bg: #1a1a1a; --fg: #e0e0e0; @@ -11,9 +8,6 @@ --muted: #888888; } -/* =============================== - Global Reset and Layout - =============================== */ html, body { margin: 0; padding: 0; @@ -31,9 +25,6 @@ body { justify-content: center; } -/* =============================== - Typography and Links - =============================== */ a { text-decoration: none; color: var(--link); @@ -53,9 +44,6 @@ a:hover { text-decoration: underline; } -/* =============================== - Rainbow Animation - =============================== */ .rainbow-text { font-size: 1.2rem; background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet); @@ -71,9 +59,6 @@ a:hover { 100% { background-position: 100%; } } -/* =============================== - Layout Containers - =============================== */ .scroll-container { width: 100%; max-width: 900px; @@ -95,9 +80,6 @@ a:hover { width: 50%; } -/* =============================== - Header and Navigation - =============================== */ header { border-bottom: 2px dashed var(--border); margin-bottom: 1rem; @@ -118,9 +100,6 @@ nav a:hover { text-decoration: underline; } -/* =============================== - Terminal Box and Markdown - =============================== */ .terminal-box { background: var(--bg); border: 2px dashed var(--border); @@ -137,9 +116,6 @@ nav a:hover { overflow-wrap: break-word; } -/* =============================== - Blog Post List - =============================== */ .post-list { list-style-type: none; padding-left: 0; @@ -155,9 +131,6 @@ nav a:hover { font-size: 0.9em; } -/* =============================== - Footer - =============================== */ footer { margin-top: 2rem; border-top: 2px dashed var(--border);