Skip to content

Commit 77e3bd3

Browse files
authored
Merge branch 'main' into about-us
2 parents 888da69 + a334025 commit 77e3bd3

File tree

4 files changed

+248
-141
lines changed

4 files changed

+248
-141
lines changed

contact.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
<body>
1414
<nav class="navbar">
15-
<img class="logo-btob" src="https://i.ibb.co/PtCXdz2/btob1.jpg"/>
15+
<img class="logo-btob" src="https://i.ibb.co/PtCXdz2/btob1.jpg" alt="logo"/>
1616
<ul class="nav-menu">
1717
<li class="nav-item"><a href="./index.html">Home</a></li>
1818
<li class="nav-item"><a href="./tour.html">Tour</a></li>
19-
<li class="nav-item"><a href="./about-us.html">About us</a</li>
19+
<li class="nav-item"><a href="./about-us.html">About us</a></li>
2020
<li class="nav-item"><a href="./contact.html">Contact</a></li>
2121
</ul>
2222
</nav>
@@ -49,22 +49,22 @@ <h4 class="h2-contact">Notre équipe se fera un plaisir de planifier votre nouve
4949
<option selected>Selectionner votre Periode</option>
5050
<option class="periode1" value="periode1">Janvier à Mars</option>
5151
<option class="periode2" value="periode2">Avril à Juin</option>
52-
<option class ="periode3"value="periode3">Juillet à Septembre</option>
52+
<option class ="periode3" value="periode3">Juillet à Septembre</option>
5353
<option class ="periode4" value="periode4">Octobre à Décembre</option>
5454
</select>
5555
<br/>
5656

5757
<div>
58-
<label for="gender">Demande : </label>
58+
<label> Demande : </label>
5959
<br/>
60-
<input type="radio" name="type" class="check" checked />
61-
<label class="check2" for="devis">Devis</label>
60+
<input type="radio" name="type" class="check" checked />
61+
<label class="check" id="check1" >Devis</label>
6262

6363
<input type="radio" name="type" class="check" />
64-
<label class="check2" for="dispo">Disponibilité</label>
64+
<label class="check" id="check2" >Disponibilité</label>
6565

66-
<input type="radio" name="type" class="check" />
67-
<label class="check2" for="renseignement">Renseignement</label>
66+
<input type="radio" name="type" class="check" />
67+
<label class="check" id="check3" >Renseignement</label>
6868
</div>
6969

7070
<label for="message"> Message :</label><br />

scripttr.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ document.addEventListener('scroll',() => {
88
car.style.height = window.scrollY
99
}
1010
11-
})*/
11+
})*/
12+

style.css

+77-25
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ html {
55
scroll-behavior: smooth;
66
}
77

8+
9+
810
body {
911
padding: 0;
1012
margin: 0;
@@ -560,7 +562,6 @@ input[type="submit"]:hover {
560562
}
561563

562564
.img2t {
563-
564565
margin: 5%;
565566
max-width: 90%;
566567
border-radius: 10%
@@ -572,17 +573,32 @@ input[type="submit"]:hover {
572573
}
573574

574575
.kilometrage {
576+
text-align: end;
577+
font-size: 0.6rem;
578+
}
579+
580+
.VilleTour {
581+
text-align: justify;
582+
text-justify: inter-word;
575583
margin-left: 2rem;
576-
margin-top: 5rem;
584+
}
585+
586+
.imgVilleTour2 {
587+
text-align: justify;
588+
text-justify: inter-word;
589+
margin-left: 2rem;
590+
}
591+
592+
.title-recommend{
593+
font-size: 1,5rem ;
577594
}
578595

579596
.van{
580-
height: 5%;
581-
width: 5%;
597+
height: 30%;
598+
width: 30%;
582599
color: rgb(3, 3, 87);
583600
position: relative;
584-
animation: 4s ease-out roll forwards;
585-
601+
animation: 4s ease-out infinite roll ;
586602
}
587603

588604
@keyframes roll {
@@ -591,7 +607,7 @@ input[type="submit"]:hover {
591607
}
592608

593609
100% {
594-
left: 85%;
610+
left: 70%;
595611

596612
}
597613

@@ -628,10 +644,14 @@ input[type="submit"]:hover {
628644

629645
.DetailTour2 {
630646
display: flex;
631-
justify-content: space-evenly;
647+
justify-content: space-between;
632648
align-items: center;
633649
width: 100%;
650+
}
634651

652+
.textDetailTour{
653+
margin-right: 2px;
654+
text-align: justify;
635655
}
636656

637657
.img2t {
@@ -642,27 +662,28 @@ input[type="submit"]:hover {
642662
transform: scale(1.5);
643663
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
644664
}
645-
}
646-
647-
.textDetailTour {
648-
font-size: 0.7rem;
649-
font: justify;
650-
}
651665

652-
@media screen and (min-width: 600px) {
653-
.textDetailTour {
654-
font-size: 1.2rem;
666+
.imgVilleTour2:active{
667+
transform: scale(2)
655668

656669
}
657670
}
658671

659672

673+
660674
@media screen and (min-width: 600px) {
661675

676+
.textDetailTour {
677+
font-size: 1rem;
678+
padding-right: 3px;
679+
border: rgb(255, 255, 255) solid 10px;
680+
}
681+
662682
.VilleTour2 {
663683
display: flex;
664684
flex-direction: row;
665685
text-justify: inter-word;
686+
flex-wrap: inherit;
666687
}
667688

668689
.img2t {
@@ -676,30 +697,34 @@ input[type="submit"]:hover {
676697
box-shadow: 12px 29px 81px 50px white;
677698
/*Ombre mis en place sur les img*/
678699
}
679-
700+
.DetailTour2{
701+
padding: 1rem;
702+
display: flex;
703+
flex-direction: column;
704+
align-items: center;
705+
}
680706
.imgVilleTour {
681707
width: 20%;
682708
height: 20%;
683709
margin-top: 1rem;
684710
margin-left: 2rem;
685711
margin-right: 1rem;
686-
border-radius: 1rem;
712+
border-radius: 25px;
687713
border: solid black 2px;
688714
}
689715

690716
.imgVilleTour2 {
691-
width: 50%;
692-
height: 50%;
717+
width: 60%;
718+
height: 60%;
693719
margin-top: 1rem;
694720
margin-left: 2rem;
695721
margin-right: 2rem;
696-
border-radius: 1rem;
722+
border-radius: 25px;
697723
}
698724

699725
.DetailTour {
700726
display: flex;
701727
align-items: center;
702-
703728
}
704729

705730
scroll-container {
@@ -731,25 +756,52 @@ scroll-container {
731756
margin: 1.2rem 1.2rem;
732757
}
733758

759+
.imgVilleTour2:active{
760+
transition: transform .7s;
761+
transform: scale(1.5);
762+
763+
}
764+
.imgVilleTour:not(:active)
765+
{
766+
transition: 0.5s;
767+
768+
}
769+
.imgVilleTour2img:not(:active)
770+
{
771+
transition: 0.5s;
772+
}
773+
774+
.imgVilleTour:active{
775+
transition: transform .7s;
776+
transform: scale(1.5);
777+
778+
}
779+
734780
/*Annimation -- Tutuuttttre */
735781
/*
736782
.matutur {
737783
position: fixed;
738-
top: 12%;
784+
top: 2%;
739785
width: 100%;
740786
fill: red;
787+
z-index: -1;
741788
}
742789
743790
744791
.matutur .progress-container {
745792
width: 100%;
746793
height: 8px;
794+
color: #b98800;
795+
z-index: -1;
747796
}
748797
749798
.matutur .progress-container .progress-bar {
750799
height: 5vh;
751800
width: 5%;
752801
color: rgb(3, 3, 87);
753802
fill: red;
803+
z-index: -1;
754804
}
755-
*/
805+
806+
*/
807+

tour.html

+160-106
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)