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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
body
{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}
#framecontentLeft
{
position: absolute;
width: 200px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #1C1C1C;
z-index: 1
}
#framecontentBottom
{
position: absolute;
top: 0;
left: 0;
width: 200px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: navy;
color:#1C1C1C;
}
#framecontentBottom{
top: auto;
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
width: auto;
bottom: 0;
right: 0;
height: 120px; /*Height of bottom frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #3A3839;
color: white;
}
#maincontent{
position: fixed;
top: 0;
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
right: 0;
bottom: 120px; /*Set bottom value to HeightOfTopFrameDiv*/
overflow: auto;
background: #FFFFFF;
}
.innertube
{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
margin-top: 0;
}
* html body
{ /*IE6 hack*/
padding: 0 0 120px 200px; /*Set value to (0 0 HeightOfTopFrameDiv WidthOfLeftFrameDiv)*/
}
* html #maincontent
{ /*IE6 hack*/
height: 100%;
width: 100%;
}
* html #framecontentBottom
{ /*IE6 hack*/
width: 100%;
}
.menu1
{
width: 200px;
color : #A4A4A4;
display: block;
list-style-type: none;
font-family: Arial, sans-serif;
font-weight: bold;
text-decoration:none;
padding: 20px;
border-bottom:1px solid #A4A4A4;
border-top:1px solid #A4A4A4;
text-decoration:none;
z-index:100;
}
#menu-vertical li
{
text-align : left;
list-style: none;
position: relative;
background:#1C1C1C; /* juste pour cacher le texte de la page en-dessous */
}
#menu-vertical ul
{
position: absolute;
display: none;
}
#menu-vertical li:hover ul
{
display:block;
top: 0;
left: 80px;
z-index: 2
} |
Partager