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
| body {
background-color : #ffffff;
padding-bottom : 40px ;
padding-top : 0px ;
font: 1em/1.5em bold italic small-caps verdana,arial;;
}
/*////////////////////////////////////////////////////////*/
/* Petit menu du haut pour choisir le style */
.up-sytle {
width: 100%px;
height: 10px;
margin: 0 auto;
left:0px;
background-color: yellow;
text-align :left;
font-family:verdana;
font-size: 9px;
}
.up-sytle a {background-color:#FFE6F0 ; color:blue; text-decoration:underline}
.up-sytle a:hover {background-color:#FFE6F0 ; color:red; text-decoration:none}
/*////////////////////////////////////////////////////////*/
.header{
background-color:red;
width:100%;
text-align:center;
}
/*////////////////////////////////////////////////////////*/
/* A voir !... */
.entete{
background-color:cyan;
}
/*////////////////////////////////////////////////////////*/
/* Menu horizontal sous l'entête */
.menutab{
background-color:lightgreen;
}
/*////////////////////////////////////////////////////////*/
/* Menu vertival à gauche */
.menu {
width : 250px;
height: 250px;
background-color: #808080;
border: 1px solid black;
border-style : inset;
left:10px ;
padding-top:10px ;
margin-bottom:30px;
font-size : 9pt ;
color :#D8FFFF ;
}
.menu a:hover {background-color:#FFE6F0 ; color:aqua ; text-decoration:none}
.menu a {background-color:#FFE6F0 ; color:white }
.menu ul {list-style-type:circle}
/*////////////////////////////////////////////////////////*/
/* Contenu général qui s'adapte au texte du contenu */
#container{
position: relative;
}
.contenu {
border-left:2px solid #808080;
border-top:2px solid #808080;
border-right:2px solid #aaa;
border-bottom:2px solid #aaa;
width:58% ;
margin-left:5px ;
float:left ;
margin:40px 1px 3px 2px ;
padding-left:4px ;
font-size : 8pt ;
-moz-border-radius:10px; /* encadrement avec coins arrondis */
}
.commentaire {
background-color : #F9C09B;
border: outset 2px black ;
width:37% ;
margin-left:5px ;
float:left ;
margin-top:40px ;
text-align:justify ;
padding : 5px ;
font-size : 9pt ;
-moz-border-radius:10px; /* encadrement avec coins arrondis */
}
/*////////////////////////////////////////////////////////*/
/* Pour un retour de ligne après le contenu */
.spacer {clear :both}
/*////////////////////////////////////////////////////////*/
/* Footer */
.foot{
background-color: red;
border: 1px solid black ;
width:100%;
text-align:center;
} |
Partager