Citation :
/*
-------------------
PROPRIETES GLOBALES -------------------
*/
* {
font-family: Verdana, sans-serif;
padding: 0;
margin: 0;
}
p {
padding: 0.5em 0;
}
/*
----------------
BLOCS PRINCIPAUX
----------------
*/
body {
background: rgb(40,40,40);
text-align: center;
width: 100%;
}
#main {
margin: 0 auto;
width: 1000px;
}
/*
---------------------------------
LOGO / INFOS / HEADER / FOOTER...
---------------------------------
*/
#image_acceuil,#infos {
border: 1px rgb(60,60,60) solid;
}
/*
--------
1. LOGO
--------
*/
#image_acceuil {
background: black;
height: 512px;
border-bottom: 0;
}
/*
---------
1. INFOS
---------
*/
#infos {
border-collapse: collapse;
text-indent: 20px;
text-align: left;
width: 100%;
}
#infos_header {
background-color: rgb(50,50,50);
color: rgb(170,170,170);
font-size: 18px;
}
#infos_header th {
width: 50%;
}
#infos * td {
border-right: 1px rgb(60,60,60) solid;
font-size: 12px;
color: black;
}
.definitions {
background: rgb(88,87,82);
width: 15%;
}
.variables {
background: rgb(113,112,104);
font-weight: bold;
width: 35%;
}
|