diff --git a/docs/index.html b/docs/index.html index 5053354..04f13a6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -34,8 +34,8 @@
- 8+ - SDR Modes + 10+ + Modes
200+ @@ -105,6 +105,12 @@

TSCM

Counter-surveillance with baseline recording, threat detection, device correlation, and risk scoring.

+ +
+
+

Meter Reading

+

Intercept smart utility meters via rtl_amr. Monitor electricity, gas, and water meter transmissions.

+
@@ -238,5 +244,44 @@ docker compose up -d + + + + + diff --git a/docs/style.css b/docs/style.css index f1705dc..a6db1c1 100644 --- a/docs/style.css +++ b/docs/style.css @@ -323,6 +323,55 @@ section h2 { font-weight: 500; } +/* Lightbox */ +.lightbox { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.95); + z-index: 1000; + justify-content: center; + align-items: center; + flex-direction: column; + padding: 20px; +} + +.lightbox.active { + display: flex; +} + +.lightbox-close { + position: absolute; + top: 20px; + right: 30px; + font-size: 40px; + color: var(--text-primary); + cursor: pointer; + transition: color 0.2s; + z-index: 1001; +} + +.lightbox-close:hover { + color: var(--accent); +} + +.lightbox-img { + max-width: 90%; + max-height: 80vh; + border-radius: 8px; + box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); +} + +.lightbox-caption { + margin-top: 20px; + font-size: 1.1rem; + color: var(--text-secondary); + font-weight: 500; +} + /* Installation */ .installation { background: var(--bg-secondary);