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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
| body {
margin: 0;
padding: 10px 20px;
font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
font-size: .8em;
line-height: 1.25;
color: black;
background: #CCCCCC;
}
html {font-size: 100%;}
#global {
width: 1180px;
padding: 0 10px;
margin: 0 auto;
background: #CCCCCC url(../img/global.png) repeat-y;
}
/* <-------------------- ENTETE --------------------> */
#entete {
height: 100px;
color: #FFF;
background: #7FCF2E url(../img/header.png) no-repeat;
position: relative;
}
#entete h1 {
margin: 0;
position: absolute;
top: 5px;
left: 350px;
font: italic bold 1.2em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
}
#entete h2 {
position: absolute;
top: 25px;
left: 650px;
font: italic bold 1.2em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
}
.idDiv {
border: 1px solid #026237;
position: relative;
top: 110px;
left: 20px;
width: 200px;
height: 40px;
text-align: center;
font-size: .8em;
color: #026237;
}
#idBox {
border: 1px solid #026237;
background-color: #2EC739;
font: 1em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
color: white;
}
#idButton {
border: 1px solid #026237;
background-color: #026237;
font: 1em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
color: white;
font-weight: bold;
}
.searchDiv {
position: absolute;
top: 105px;
right: 5px;
font-size: .9em;
z-index: 1;
}
#searchBox {
border: 1px solid #026237;
background-color: #2EC739;
font: 1em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
color: white;
}
#searchButton {
border: 1px solid #026237;
background-color: #026237;
font: 1em Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
color: white;
font-weight: bold;
}
/* <-------------------- NAVIGATION --------------------> */
#navigation {
/* width: 100%;
overflow: hidden; */
}
/* <-------------------- CONTENU --------------------> */
#contenu {
position: relative;
width: 920px;
height: 578px;
margin-left: 245px;
background: #FFFFFF url(../img/accueil/bckground.png);
}
#contenu > :first-child {margin-top: 10px;}
#contenu .produit {
position: absolute;
top: 25px;
left: 50px;
width: 200px;
height: 166px;
background: #FFFFFF url(../img/accueil/produit.png);
}
#contenu .recette {
position: absolute;
top: 375px;
left: 50px;
width: 200px;
height: 164px;
background: #FFFFFF url(../img/accueil/recette.png);
}
#contenu .visiter {
position: absolute;
top: 400px;
left: 300px;
width: 218px;
height: 164px;
background: #FFFFFF url(../img/accueil/visiter.png);
}
#contenu .acheter {
position: absolute;
top: 375px;
left: 600px;
width: 218px;
height: 164px;
background: #FFFFFF url(../img/accueil/acheter.png);
}
/* <-------------------- PIED DE PAGE --------------------> */
#footer {
height: 30px;
width: 100%;
background: #7FCF2E url(../img/footer.png) repeat-x;
color: #FFF;
} |
Partager