des changements pour la mise en page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
hatemhellal
2024-12-09 22:36:36 +01:00
parent 4162435da9
commit 3d46a868c6
3 changed files with 206 additions and 12 deletions

View File

@@ -35,6 +35,10 @@ h2 a {
color: #474405; color: #474405;
text-decoration: none; /* Retire le lien visuel */ text-decoration: none; /* Retire le lien visuel */
pointer-events: none; /* Désactive l'interaction du lien */ pointer-events: none; /* Désactive l'interaction du lien */
} }
@@ -42,6 +46,10 @@ h4 a {
color: #8B5E3C; color: #8B5E3C;
text-decoration: none; /* Retire le lien visuel */ text-decoration: none; /* Retire le lien visuel */
pointer-events: none; /* Désactive l'interaction du lien */ pointer-events: none; /* Désactive l'interaction du lien */
font-size: 1em;
} }
h1 { h1 {
@@ -52,17 +60,28 @@ h1 {
text-transform: uppercase;} text-transform: uppercase;}
p{ p{
font-weight: normal; font-weight: normal;
margin: 10px 10px ;
text-align: justify; text-align: justify;
font-size: 0.98em; font-size: 1.1em;
color:#8B5E3C; color:#8B5E3C;
}
span{
display: block;
line-height: 1.8;
margin: 0cm 1cm 0cm 1cm;
} }
video { video {
border: 2px solid #474405; border: 2px solid #474405;
border-radius: 8px; border-radius: 8px;
max-width: 100%; /* Responsive width */ max-width: 100%; /* Responsive width */
max-width: 1200px;
display: block; /* Center the video */ display: block; /* Center the video */
margin: 20px auto; margin: 10px auto;
width: 100vw; /* Largeur égale à la largeur de la fenêtre */
height: 100vh; /* Hauteur égale à la hauteur de la fenêtre */
object-fit: cover; /* Adapte la vidéo sans déformation */
} }
.background{ .background{
background-color:#F5F5F5;} background-color:#F5F5F5;}

File diff suppressed because one or more lines are too long

View File

@@ -1,11 +1,13 @@
<template> <template>
<div class="background"> <div class="background">
<main> <h1>DÉCLARATION DES DROITS DE L'ÂME ET DU VIVANT</h1>
<ContentDoc />
</main>
<video controls width="640"> <video controls width="640">
<source src="/videos/video.mp4" type="video/mp4" /> <source src="/videos/video.mp4" type="video/mp4" />
Your browser does not support the video tag. Your browser does not support the video tag.
</video> </video>
<main>
<ContentDoc />
</main>
</div> </div>
</template> </template>