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
| body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {margin :0; padding :0; }
fieldset, img { border :0;margin: 0px 0px 0px 0px;}
address, caption, cite, dfn, em, strong, th, var { font-style :normal; font-weight :normal; }
ol, ul { list-style :none; }
caption, th { text-align :left; }
h1, h2, h3, h4, h5, h6 { font-size :100%; font-weight :normal; }
/* =================fin du raz======F08136=========== */
html, body { height: 100%; }
body { background-color:#ffffff;font-family:"Times New Roman", Times, serif;color:#000000; font-size:24px;margin:0;border:0;text-align: center;}
h1 {font-family: "Felix Titling", "Times New Roman", Harrington, sans-serif;font-size: 40px;color:#222224;}
span.leTitre {font-family: "Felix Titling", "Times New Roman", Harrington, sans-serif;font-size: 40px;color:#222224;}
* {box-sizing: border-box;}
.wrapper {
display: grid;
grid-template-rows: auto auto 1fr;
grid-template-areas:
"bandeau"
"ToutMenu"
"content"
"footer";
min-height: 100vh;
}
.bandeau {
grid-area: bandeau;
text-align:center;
}
.ToutMenu {
grid-area: ToutMenu;
text-align:center;
}
.content {
grid-area: content;
text-align:left;
}
.footer {
grid-area: footer;
text-align:center;
}
/* ETC.... */ |
Partager