From 5a029c8cff4ac2748cf0e593db22488ae468a995 Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Tue, 24 Feb 2026 07:39:08 +0100 Subject: [PATCH] f --- public/index.html | 2 -- public/style.css | 8 +++----- public/viewer.js | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/public/index.html b/public/index.html index 4268f1e..232bb39 100644 --- a/public/index.html +++ b/public/index.html @@ -5,7 +5,6 @@ Screenshare - Viewer -
@@ -15,7 +14,6 @@ Connecting to Broadcaster
-

Click anywhere to enable audio once connected

diff --git a/public/style.css b/public/style.css index c322518..2539a87 100644 --- a/public/style.css +++ b/public/style.css @@ -2,9 +2,9 @@ --bg-color: #0f172a; --text-primary: #f8fafc; --text-secondary: #94a3b8; - --accent-color: #3b82f6; - --accent-glow: rgba(59, 130, 246, 0.5); - --glass-bg: rgba(30, 41, 59, 0.7); + --accent-color: #08e413; + --accent-glow: rgba(11, 219, 28, 0.365); + --glass-bg: rgba(21, 22, 22, 0.7); --glass-border: rgba(255, 255, 255, 0.1); --success-color: #10b981; --error-color: #ef4444; @@ -17,7 +17,6 @@ } body { - font-family: "Inter", sans-serif; background-color: var(--bg-color); color: var(--text-primary); min-height: 100vh; @@ -196,7 +195,6 @@ video.active { .overlay { position: absolute; padding: 2rem 4rem; - border-radius: 20px; text-align: center; z-index: 10; transition: opacity 0.5s ease; diff --git a/public/viewer.js b/public/viewer.js index 26eb3b6..8cf57c6 100644 --- a/public/viewer.js +++ b/public/viewer.js @@ -202,7 +202,7 @@ socket.on('broadcasterDisconnected', () => { remoteVideo.srcObject = null; overlay.classList.remove('hidden'); - overlay.querySelector('h1').innerText = 'Stream Ended'; + overlay.querySelector('h1').innerText = 'Offline'; overlay.querySelector('.status-indicator span:last-child').innerText = 'Waiting for new stream...'; });