-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (97 loc) · 2.03 KB
/
style.css
File metadata and controls
114 lines (97 loc) · 2.03 KB
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
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4; /* Couleur de fond */
color: #333; /* Couleur du texte */
}
h1, h2, h3, h4 {
color: #BF4C00; /* Couleur des titres */
}
/* Header */
header {
padding: 20px;
text-align: center;
background-image: url('/images/ee1db673206392cf8854c43c770fe44a.jpg'); /* Chemin vers votre image */
background-size: cover; /* Pour couvrir toute la zone de l'en-tête */
background-position: center; /* Pour centrer l'image */
padding: 20px;
text-align: center;
}
/* Navigation */
nav {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
}
nav a:hover {
text-decoration: underline; /* Soulignement au survol */
}
/* Main Content */
main {
padding: 20px;
}
section {
margin-bottom: 40px;
background: #fff; /* Arrière-plan de section */
border-radius: 8px; /* Coins arrondis */
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Ombre portée */
}
/* Point fort */
#point-fort ul {
list-style-type: none; /* Suppression des puces */
padding: 0;
}
#point-fort li {
margin-bottom: 20px;
}
/* Horaire */
.horaire {
font-weight: bold;
color: #BF4C00; /* Couleur destacada */
}
/* Contact */
#contact {
margin-top: 20px;
}
/* Boutons */
button {
background: #BF4C00;
color: #fff;
border: none;
padding: 10px 15px;
border-radius: 5px; /* Bord arrondi */
cursor: pointer;
}
button:hover {
background: #a13f00; /* Changer la couleur au survol */
}
/* Images */
img {
max-width: 100%;
height: auto;
border-radius: 8px; /* Coins arrondis pour les images */
}
/* Listes des accompagnements */
.contenu-menu ul {
list-style-type: none;
padding: 0;
}
.contenu-menu h4 {
margin-top: 30px;
}
/* Footer si nécessaire */
footer {
text-align: center;
padding: 20px;
background: #333;
color: #fff;
}