-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie-style.css
103 lines (93 loc) · 2.17 KB
/
movie-style.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
/* movie-style.css */
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
.movie-details {
/* display: flex;
align-items: flex-start;
margin-bottom: 40px;
background: rgba(0, 255, 93, 0.25);
border-radius: 16px; */
display: flex;
align-items: flex-start;
margin-bottom: 40px;
margin-top: 30px;
justify-content: space-between;
background-color: rgba(255, 255, 255, .45);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, .25);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
backdrop-filter: blur(15px);
background: linear-gradient(
120deg,
rgba(255, 255, 255, .25),
rgba(255, 255, 255, .75), 30%,
rgba(255, 255, 255, .25)
);
backdrop-filter:
blur(15px)
saturate(1000%);
box-shadow:
inset 4px 4px 5px 0 rgba(255, 255, 255, .25),
inset -4px -4px 5px 0 rgba(0, 0, 0, 0.125),
0 0 10px 1px rgba(0, 0, 0, 0.25);
}
.movie-image {
flex: 0 0 30%;
margin-right: 20px;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 5px;
overflow: hidden;
border-radius: 20px;
box-shadow: -30px 0px 100px 60px rgba(27, 99, 255, 0.3);
}
.movie-image img {
width: 100%;
border-radius: 8px;
cursor: pointer;
}
.movie-info {
flex: 1;
color: black;
font-weight: 600;
z-index: 5;
}
.movie-info h1 {
font-size: 24px;
margin-bottom: 10px;
margin-top: 35px;
}
.movie-info p {
margin-bottom: 10px;
margin-top: 20px;
}
button#bookmarkButton {
/* background-color: #ff4081;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer; */
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
border: 0;
text-decoration: none;
border-radius: 6px;
transition: transform 0.3s;
background-color: #ff4081;
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(30px);
color: #fff;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
button#bookmarkButton:hover {
background-color: #fc5b91;
transform: scale(1.05);
}