-
Notifications
You must be signed in to change notification settings - Fork 2
/
streamingstyle.css
113 lines (95 loc) · 1.88 KB
/
streamingstyle.css
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
/* Base styles */
body {
background: #000;
color: #fff;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #e91e63;
}
h2.collapsible {
font-size: 1.5rem;
color: #fff;
cursor: pointer;
background: #333;
padding: 10px;
border-radius: 6px;
transition: background 0.3s ease;
}
h2.collapsible:hover {
background: #e91e63;
}
.episode-section {
margin-bottom: 30px;
}
.episode-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.episode-card {
background: rgba(0, 0, 0, 0.7);
border-radius: 8px;
overflow: hidden;
padding: 10px;
text-decoration: none;
color: #fff;
transition: transform 0.3s ease, background 0.3s;
}
.episode-card:hover {
transform: translateY(-5px);
background: #e91e63;
}
.episode-number {
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 5px;
}
.episode-title {
font-size: 1.2rem;
margin-bottom: 10px;
}
.filler-tag {
background: #ff9800;
color: #fff;
padding: 3px 8px;
border-radius: 4px;
font-size: 0.9rem;
}
.hidden {
display: none;
}
/* Header and Footer */
header, footer {
background: rgba(0, 0, 0, 0.8);
padding: 20px;
}
header a, footer a {
color: #fff;
text-decoration: none;
}
header a:hover, footer a:hover {
text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container {
padding: 15px;
}
h1 {
font-size: 2rem;
}
.episode-grid {
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
}