-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoviePage.php
More file actions
97 lines (75 loc) · 2.43 KB
/
Copy pathmoviePage.php
File metadata and controls
97 lines (75 loc) · 2.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<style>
.moviePage {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #141414;
color: #fff
}
.mv-video-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%
}
.mv-video-embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.mv-content {
padding: 20px 4%;
}
.mv-info-box {
background-color: rgba(51, 51, 51, 0.8);
padding: 20px;
border-radius: 5px;
margin-bottom: 20px
h1 {
font-size: 2rem;
margin-bottom: 10px
}
p {
margin-bottom: 10px
}
}
.mv-meta {
display: flex;
justify-content: space-between;
margin-bottom: 10px
}
.mv-tag {
background-color: rgba(255, 255, 255, 0.1);
padding: 5px 10px;
border-radius: 3px;
font-size: 0.8rem
}
</style>
<div class="moviePage" >
<div class="mv-video-container">
<iframe class="mv-video-embed"
src="https://www.youtube.com/embed/uaolQqBQgkI?autoplay=1&controls=1&modestbranding=1&rel=0" frameborder="0"
allow="autoplay; encrypted-media; fullscreen" allowfullscreen></iframe>
</div>
<section class="mv-content">
<div class="mv-info-box">
<h1>La Petite Sirène - Bande Annonce</h1>
<div class="mv-meta">
<span>2023</span>
<span>PG</span>
<span>1min 57sec</span>
</div>
<p>Découvrez la bande-annonce officielle de "La Petite Sirène", l'adaptation en live-action du classique
Disney.</p>
<div class="mv-meta">
<span class="mv-tag">Fantaisie</span>
<span class="mv-tag">Aventure</span>
<span class="mv-tag">Famille</span>
</div>
<p>Réalisateur: Rob Marshall</p>
<p>Acteurs: Halle Bailey, Jonah Hauer-King, Melissa McCarthy</p>
</div>
</section>
</div>