Skip to content

Commit ad4d6af

Browse files
committed
home page done
done home page
1 parent 4173624 commit ad4d6af

File tree

3 files changed

+62
-13
lines changed

3 files changed

+62
-13
lines changed

asset/img/vieillechat.jpg

31.7 KB
Loading

index.html

+13-5
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,8 @@
4949
<main class="main-container">
5050
<section class="hero-section">
5151
<div class="inner-hero-section">
52-
<div class="video-hero-container">
53-
<video class="video-hero" autoplay loop>
54-
<source src="/asset/video/vidtp2.mp4" type="video/mp4">
55-
</video>
52+
<div class="img-hero-container">
53+
<img src="./asset/img/vieillechat.jpg" class="img-hero" alt="pauline et son chat"/>
5654
<div class="hero-content">
5755
<h1 class="hero-title">Le journal de qoubec: Où les Nouvelles Deviennent Sketchs</h1>
5856
<p class="hero-paragraph"><strong class="strong-word-hero-paragraph">Pauline Tremblay de Saint-Côme</strong> a perdu <em class="emp-word-hero-paragraph">son chaton</em> <br/>et ne le retrouve plus depuis plus d'une semaine. La SQ lance un alerte Amber afin de le retrouver.</p>
@@ -65,7 +63,17 @@ <h1 class="hero-title">Le journal de qoubec: Où les Nouvelles Deviennent Sketch
6563
</div>
6664
</section>
6765
<section class="about-us-section">
68-
66+
<div class="about-us-inner-section">
67+
<div class="about-us-text-container">
68+
<h2 class="about-us-title">Qui sommes-nous?</h2>
69+
<p class="about-us-paragraph">"Le Journal de Qoubec", où l'actu se déguise en sketch ! Ici, on décortique les nouvelles avec sarcasme et sans filtre. Préparez-vous à rire jaune de l'absurde réalité. Info ou Intox ? À vous de démêler le vrai du faux, mais toujours avec un éclat de rire. Piquant, provocant, hilarant - c'est le Qoubec comme jamais vu !</p>
70+
</div>
71+
<div class="about-us-video-container">
72+
<video class="about-us-video" autoplay loop>
73+
<source src="/asset/video/vidtp2.mp4" type="video/mp4">
74+
</video>
75+
</div>
76+
</div>
6977
</section>
7078
</main>
7179

style/home.css

+49-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
margin-top: 20px;
1313

1414
}
15-
.video-hero-container{
15+
.img-hero-container{
1616
width: 100%;
1717
height:100%;
1818
position: relative;
@@ -23,13 +23,11 @@
2323
overflow: hidden;
2424
z-index: 0;
2525
}
26-
.video-hero{
27-
width:100%;
28-
height:auto;
29-
object-fit: contain;
30-
filter: brightness(60%);
26+
.img-hero{
27+
width: 100%;
28+
height:auto;
29+
filter: brightness(50%);
3130
}
32-
3331
.hero-content{
3432
position: absolute;
3533
z-index: 10;
@@ -90,4 +88,47 @@
9088

9189
.hero-button-link:visited{
9290
color:var(--background)
93-
}
91+
}
92+
93+
.about-us-section{
94+
width: 100%;
95+
height:500px;
96+
margin-top: 80px;
97+
98+
}
99+
100+
.about-us-inner-section{
101+
display: flex;
102+
flex-direction: row;
103+
align-items: center;
104+
width:100%;
105+
height:100%;
106+
107+
}
108+
109+
.about-us-text-container{
110+
width:50%;
111+
height:100%;
112+
display: flex;
113+
flex-direction: column;
114+
align-items: flex-start;
115+
}
116+
117+
.about-us-video-container{
118+
display: flex;
119+
flex-direction: row;
120+
align-items: center;
121+
width: 50%;
122+
height:100%;
123+
background-color: aqua;
124+
overflow: hidden;
125+
border-radius: 10px;
126+
}
127+
128+
.about-us-video{
129+
width: auto;
130+
height:100%;
131+
object-fit: contain;
132+
filter: brightness(60%);
133+
}
134+

0 commit comments

Comments
 (0)