wip split style

This commit is contained in:
hugo LAMY
2026-02-15 19:51:38 +01:00
parent 32007e7ada
commit 7de0c392c1
13 changed files with 463 additions and 421 deletions

75
www/css/page_accueil.css Normal file
View File

@@ -0,0 +1,75 @@
/* page accueil */
#content {
float: left;
width: 480px;
height: 600px;
margin-left: 100px;
margin-top: 92px;
}
.diaporama {
position: relative;
width: 480px; /* Largeur d'une photo */
height: 360px; /* Hauteur d'une photo */
/*margin-top:30px;
margin-left:262px;*/
}
.diaporama li {
list-style-type: none;
overflow: hidden;
position: absolute; /* Les images seront positionnées toutes au même endroit */
}
.diaporama li a img {
width: 100%;
height: 100%;
}
.diaporama_controls {
width: 512px;
margin: 3px 0;
/* padding:5px;*/
clear: both;
overflow: hidden;
}
.diaporama_controls .btns {
float: right;
}
.diaporama_controls a {
font-weight: normal;
width: 10px;
/*height:13px;*/
text-indent: -9999px;
display: inline-block;
margin: 0 3px;
}
.diaporama_controls .prev {
background: url(img/fleches_diapo.png) no-repeat top right;
}
.diaporama_controls .next {
background: url(img/fleches_diapo.png) no-repeat top left;
}
.diaporama_controls .pause {
background: url(img/fleches_diapo.png) no-repeat bottom right;
}
.diaporama_controls .play {
background: url(img/fleches_diapo.png) no-repeat bottom left;
}
#texte {
float: left;
width: 480px;
height: auto;
font-size: 11px;
/*margin-top:15px;*/
padding-right: 10px;
text-align: justify;
}