Skip to content

Commit b16246a

Browse files
authored
Broadcast page UI Updates
Enhanced UI for broadcast page with modern design and improved theme support
2 parents 69d21f1 + 93567f0 commit b16246a

File tree

2 files changed

+460
-110
lines changed

2 files changed

+460
-110
lines changed

src/pages/broadcasts/index.css

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,43 @@ h1 {
221221
.details-card {
222222
max-width: 1200px;
223223
margin: 0 auto;
224-
padding: 2rem;
225-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
226-
border-radius: 12px;
227-
background: var(--ifm-background-surface-color);
224+
padding: 3rem;
225+
box-shadow:
226+
0 10px 30px rgba(0, 0, 0, 0.1),
227+
0 4px 12px rgba(0, 0, 0, 0.05);
228+
border-radius: 24px;
229+
background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
228230
width: 100%;
229231
box-sizing: border-box;
232+
border: 1px solid rgba(226, 232, 240, 0.6);
233+
position: relative;
234+
backdrop-filter: blur(10px);
235+
}
236+
237+
.details-card::before {
238+
content: '';
239+
position: absolute;
240+
top: 0;
241+
left: 0;
242+
right: 0;
243+
bottom: 0;
244+
background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
245+
radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.02) 0%, transparent 45%);
246+
border-radius: 24px;
247+
z-index: -1;
248+
}
249+
250+
[data-theme='dark'] .details-card {
251+
background: linear-gradient(145deg, var(--dark-card-bg) 0%, #0c1117 100%);
252+
border-color: var(--dark-border);
253+
box-shadow:
254+
0 10px 30px rgba(0, 0, 0, 0.3),
255+
0 4px 12px rgba(0, 0, 0, 0.2);
256+
}
257+
258+
[data-theme='dark'] .details-card::before {
259+
background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
260+
radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.04) 0%, transparent 45%);
230261
}
231262

232263
.video-container {

0 commit comments

Comments
 (0)