generated from savvy-coders/savvy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdummy.js
More file actions
48 lines (41 loc) · 1.04 KB
/
dummy.js
File metadata and controls
48 lines (41 loc) · 1.04 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
// .movie-grid::-webkit-scrollbar {
// height: 8px;
// }
// .movie-grid::-webkit-scrollbar-track {
// background: rgba(255, 255, 255, 0.1);
// border-radius: 4px;
// }
// .movie-grid::-webkit-scrollbar-thumb {
// background: rgba(255, 215, 0, 0.5);
// border-radius: 4px;
// }
// .movie-grid::-webkit-scrollbar-thumb:hover {
// background: rgba(255, 215, 0, 0.8);
// }
// .movie-card {
// flex: 0 0 200px;
// background: rgba(255, 255, 255, 0.05);
// border-radius: 12px;
// padding: 1rem;
// transition: transform 0.3s ease, box-shadow 0.3s ease;
// border: 1px solid rgba(255, 255, 255, 0.1);
// }
// .movie-card:hover {
// transform: translateY(-5px);
// box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
// border-color: rgba(255, 215, 0, 0.5);
// }
// .movie-card img {
// width: 100%;
// height: 280px;
// object-fit: cover;
// border-radius: 8px;
// margin-bottom: 0.5rem;
// }
// .movie-card h3 {
// font-size: 0.95rem;
// color: #ffd700;
// margin: 0;
// text-align: center;
// line-height: 1.3;
// }