-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreservation.css
More file actions
88 lines (78 loc) · 1.64 KB
/
reservation.css
File metadata and controls
88 lines (78 loc) · 1.64 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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
/* En-tête */
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;
}
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 */
}
/* Formulaire de réservation */
form {
background: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: 20px auto;
}
/* Étiquettes et champs de saisie */
label {
margin-top: 10px;
display: block;
font-weight: bold;
}
input[type="text"],
input[type="date"],
input[type="number"],
select {
width: 100%;
padding: 8px;
margin: 5px 0 15px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
/* Boutons */
button {
background-color: #BF4C00;
color: white;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #BF4C00;
}
/* Message de confirmation */
.confirmation {
margin: 20px auto;
padding: 15px;
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
border-radius: 5px;
display: none; /* caché par défaut */
}