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
|
/********** BODY **********/
html, body
{
background-color: #E6E6E6;
border: none;
height: 100%;
margin: 0;
padding: 0;
}
/********** CONTAINER **********/
#container
{
background-color: white;
border: 1px solid black;
border: 1px solid black;
margin-bottom: auto;
margin-left: auto;
margin-right: auto;
margin-top: auto;
min-height: 600px;
width: 960px;
}
/********** HEADER **********/
#header
{
height: 92px;
}
/********** SIDEBAR **********/
.sidebar
{
background-color: white;
border-top: 1px solid black;
height: 508px;
overflow: auto;
position: absolute;
width: 260px;
}
/********** CONTENT **********/
.content
{
background-color: white;
border-left: 1px solid black;
border-top: 1px solid black;
margin-left: 260px;
min-height: 508px;
}
/********** FOOTER **********/
#footer
{
background-image: url("img/copyright.png");
border-top: 1px solid black;
height: 30px;
position: relative;
} |
Partager