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
| html, body
{
position:relative;
right: 2px;
width: auto;
max-width: 1255px;
height: 100%;
margin: auto;
background-color: white;
font-family: Arial, Helvetica, "Liberation Sans", FreeSans, sans-serif;
}
#container
{
background-color: black;
width: 100%;
height: 100%;
min-height: 968px;
padding-right: 8px;
}
#gauche
{
position: relative;
background-color: rgb(13,122,242);
width: 15%;
min-width: 80px;
max-width: 190px;
min-height: 900px;
max-height: 900px;
float: left;
margin-right: 5px;
overflow: hidden;
border: 1px solid white;
margin-top: 10px;
}
.gallerie_images
{
background-color: black;
width: 83%;
float: left;
padding-top: 10px;
}
#clear
{
clear: both;
} |