-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (116 loc) · 1.9 KB
/
styles.css
File metadata and controls
124 lines (116 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* Base Reset */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #111;
color: #eee;
font-family: 'Segoe UI', sans-serif;
line-height: 1.6;
padding: 1rem;
}
/* Site Header */
.site-header {
text-align: center;
margin-bottom: 2rem;
}
.site-header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.site-header p {
font-size: 1.1rem;
opacity: 0.8;
}
/* Episode Card */
.episode-card {
max-width: 800px;
margin: 2rem auto;
background: #1a1a1a;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
/* Video Wrapper */
.video-wrapper {
position: relative;
background: #000;
}
.video-wrapper video {
display: block;
width: 100%;
height: auto;
}
.badge {
position: absolute;
top: 0.75rem;
right: 0.75rem;
background: #e63946;
color: #fff;
padding: 0.3rem 0.6rem;
font-size: 0.9rem;
font-weight: bold;
border-radius: 4px;
opacity: 0.9;
pointer-events: none;
}
/* Episode Info */
.episode-info {
padding: 1rem 1.5rem;
}
.episode-info h2 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
.description {
margin-bottom: 0.75rem;
opacity: 0.85;
}
.creator {
font-size: 0.95rem;
color: #aaa;
}
/* Responsive */
@media (max-width: 600px) {
.site-header h1 {
font-size: 2rem;
}
.episode-info h2 {
font-size: 1.5rem;
}
}
/* Featured Carousel */
.featured-carousel {
position: relative;
overflow: hidden;
height: 400px;
}
.carousel-track {
display: flex;
transition: transform 0.5s ease;
}
.slide {
min-width: 100%;
background-size: cover;
background-position: center;
}
.dot {
display: inline-block;
height: 12px;
width: 12px;
margin: 0 4px;
background-color: rgba(255, 255, 255, 0.6);
border-radius: 50%;
cursor: pointer;
}
/* Iframe videos */
.video-wrapper iframe {
display: block;
width: 100%;
height: 450px;
border: none;
}