-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles_ap.css
More file actions
73 lines (65 loc) · 1.33 KB
/
Copy pathstyles_ap.css
File metadata and controls
73 lines (65 loc) · 1.33 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
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
color: #fff;
scroll-behavior: smooth;
}
/* Header and Footer */
header, footer {
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.6);
}
/* Main Container */
main {
max-width: 1000px;
margin: 30px auto;
padding: 20px;
}
/* Dropdown */
select {
padding: 10px;
font-size: 16px;
margin-bottom: 30px;
border-radius: 8px;
background: #444;
color: white;
border: 1px solid #888;
}
/* Season Sections */
.season-episodes {
display: none;
margin-top: 20px;
}
/* Video Container */
.video-box {
background-color: rgba(255, 255, 255, 0.08);
padding: 20px;
margin-bottom: 30px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
transition: transform 0.3s ease;
}
.video-box:hover {
transform: scale(1.02);
}
/* Video Styling */
iframe {
width: 100%;
height: 500px;
border-radius: 10px;
border: none;
}
/* Back Link */
a {
display: inline-block;
margin-top: 20px;
text-decoration: none;
color: #00ffff;
font-weight: bold;
}
/* Headings */
h2 {
margin-bottom: 15px;
}