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
|
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: 'Lucida Grande', helvetica, arial, sans-serif;
font-size: 12px;
text-align: justify;
color: white;
background-image: url(photos/background.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
#foreground {
position: fixed;
right: -250px;
top: -25px;
display: block;
z-index: 2;
}
#logo {
margin-left: auto;
margin-right: auto;
width: 560px;
z-index: 1;
}
h1 {
margin: auto;
color: black;
font-size: 28px;
}
h2, h3, p, form {
margin-left: 250px;
width: 300px;
color: black;
}
.content {
padding-top: 200px;
color: red;
background-image: url(photos/parchemin.png);
background-repeat: no-repeat;
background-position: center;
height: 962px;
}
.wrapper{
margin:auto;
background-size: cover;
} |