diff --git a/index.html b/index.html index 88245f3..2fd8a8c 100644 --- a/index.html +++ b/index.html @@ -2931,10 +2931,83 @@ .contact-icon { font-size: 14px; } + + /* ════ PROGRESS BAR ════ */ + #read-progress { + position: fixed; + top: 0; left: 0; + width: 0%; + height: 3px; + z-index: 10010; + transition: width .1s linear; + background: var(--progress-color, #fff); + } + [data-theme="cyberpunk"] #read-progress { background: #00f5ff; box-shadow: 0 0 8px #00f5ff; } + [data-theme="bd"] #read-progress { background: #FFE033; } + [data-theme="itpro"] #read-progress { background: #1a56db; } + [data-theme="cgi"] #read-progress { + background: linear-gradient(to right, #E31937, #A82465, #5236AB); + } + + /* ════ NAV ACTIVE ════ */ + nav a.nav-active { + opacity: 1 !important; + } + [data-theme="cyberpunk"] nav a.nav-active { color: #00f5ff !important; } + [data-theme="cyberpunk"] nav a.nav-active::before { opacity: 1 !important; } + [data-theme="bd"] nav a.nav-active { color: #1a1a1a !important; background: #FFE033; } + [data-theme="itpro"] nav a.nav-active { color: #1a56db !important; border-bottom-color: #1a56db !important; } + [data-theme="cgi"] nav a.nav-active { color: #5236AB !important; } + + /* ════ DOWNLOAD BTN ════ */ + .dl-btn { + display: inline-flex; + align-items: center; + gap: 8px; + padding: 9px 18px; + font-size: 11px; + font-weight: 700; + letter-spacing: .1em; + text-transform: uppercase; + cursor: pointer; + border: none; + transition: all .25s; + } + [data-theme="cyberpunk"] .dl-btn { + font-family: 'Share Tech Mono', monospace; + color: #00f5ff; + background: rgba(0,245,255,.08); + border: 1px solid rgba(0,245,255,.4); + box-shadow: 0 0 14px rgba(0,245,255,.15); + } + [data-theme="cyberpunk"] .dl-btn:hover { background: rgba(0,245,255,.18); box-shadow: 0 0 24px rgba(0,245,255,.3); } + [data-theme="bd"] .dl-btn { + font-family: 'Comic Neue', cursive; + color: #1a1a1a; + background: #FFE033; + border: 3px solid #1a1a1a; + box-shadow: 3px 3px 0 #1a1a1a; + } + [data-theme="bd"] .dl-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #1a1a1a; } + [data-theme="itpro"] .dl-btn { + font-family: 'Inter', sans-serif; + color: #fff; + background: #1a56db; + border-radius: 30px; + } + [data-theme="itpro"] .dl-btn:hover { background: #1345b5; } + [data-theme="cgi"] .dl-btn { + font-family: Arial, sans-serif; + color: #fff; + background: #5236AB; + border-left: 4px solid #E31937; + } + [data-theme="cgi"] .dl-btn:hover { background: #200A58; }
+