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
| #navigation{
background:#313131 url(./img/background.png); /* le fond*/
/* début ombre portée en css3*/
-webkit-box-shadow: 30px 0px 15px 15px #ffffff;
-moz-box-shadow: 30px 0px 15px 15px #ffffff;
box-shadow: 30px 0px 15px 15px #ffffff;
/* fin ombre portée en css3*/
/* début dimension et positionnement de la barre latérale */
width : 150px;
height : 650px;
position : fixed;
left : 0;
/* fin dimension et positionnement de la barre latérale */
/* début alignement du contenu*/
display:inline-block;
vertical-align:middle;
clear:both;
/* fin alignement contenu */
}
#navigation h1,h2{
/* début propriété du texte */
font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
text-align: center;
/* fin propriété du texte */
/* début rotation du texte en css3 */
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
writing-mode: lr-tb;
/* fin rotation du texte en css3 */
}
#navigationMenu li{
/* correspond au icone avec une classe supplémentaire par icone plus bas dans le css*/
list-style:none;
height:39px;
padding:2px;
width:40px;
margin: 0 0 0 109px;
} |
Partager