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 | @charset"ISO-8859-1";
body
{
width: 670px;
min-height: 550px;
margin: auto;
margin-top: 10px;
margin-bottom: 20px;
background-color: black;
border: 0px;
}
/* L'en-tête */
#en_tete
{
width: 670px;
height: 175px;
background-image: url("images/banniere.jpg");
background-repeat: no-repeat;
}
#background
{
width: 670px;
min-height: 550px;
background-color: white;
}
/* Le menu */
#menu
{
width: 670px;
height: 100px;
border: 0px;
text-decoration: none;
background-image: url("images/menu.jpg");
}
#img
{
float: center;
width: 670px;
height: 525px;
background-image: url("images/fond2.png");
background-repeat: no-repeat;
}
/* Le corps de la page */
#corps
{
}
.element_corps
{
margin-top: 10px;
margin-right: 100px;
margin-left: 10px;
margin-bottom: 15px;
padding: 5px;
color: black;
background-image: url("images/fond_corps.png");
background-repeat: repeat-x repeat-y;
font-weight: bold;
text-align: justify;
border: 1px solid black;
}
#corps h1
{
color: black;
text-align: center;
font-family: "Palatino Linotype", Arial, "Arial Black", "Times New Roman", Times, serif;
}
#news
{
background-image: url("images/news.png");
border:1px solid #F87600;
font:10px "Nueva Std", Verdana, Arial, Helvetica, sans-serif;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
min-height: 90px
}
}
|