-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdetails.css
130 lines (112 loc) · 2.25 KB
/
details.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* Body Styles - Full-page blur with background fill */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #ffffff;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
backdrop-filter: blur(30px); /* Stronger blur effect for the entire page */
background-color: rgba(0, 0, 0, 0.7); /* Subtle overlay for better contrast */
height: 100%; /* Full-page height */
width: 100%; /* Full-page width */
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow-x: hidden;
}
/* Poster Styling - Center and refine */
#poster {
display: block;
max-width: 300px;
height: auto;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.8); /* Shadow for better visibility */
transition: transform 0.3s, box-shadow 0.3s;
}
#poster:hover {
transform: scale(1.05); /* Slight zoom effect on hover */
box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
}
/* Title styling */
h1 {
text-align: center;
font-size: 2.5rem;
margin: 20px 0;
}
/* Stats section styling */
.stats {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 20px;
}
.icon {
display: flex;
align-items: center;
gap: 5px;
}
.icon i {
color: #ffcc00;
}
/* Buttons styling */
.buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}
.btn {
padding: 12px 25px;
border: none;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s;
}
.btn-watch {
background-color: #6a5acd;
color: white;
text-decoration: none;
}
.btn-watch:hover {
background-color: #7b68ee;
}
.btn-bookmark {
background-color: #444444;
color: white;
}
.btn-bookmark:hover {
background-color: #666666;
}
/* Description container adjustments */
.description-text {
max-width: 90%;
margin: 0 auto 20px;
text-align: center;
line-height: 1.6;
font-size: 1rem;
}
.read-toggle {
color: #cccccc;
font-weight: bold;
cursor: pointer;
}
/* More info section styling */
.more-info {
max-width: 90%;
margin: 20px auto;
padding: 15px;
line-height: 1.8;
font-size: 1rem;
}
.more-info div {
margin-bottom: 15px;
}
.more-info span:first-child {
font-weight: bold;
color: #cccccc;
}