Commit de Moncef : Ajout de foncitonnalités

This commit is contained in:
stiti
2024-05-22 23:26:06 +02:00
parent 6948cc21ab
commit 487c7c8283
13 changed files with 288 additions and 26 deletions

View File

@@ -81,3 +81,28 @@ body {
display: flex;
}
}
.search-form {
margin-right: 20px; /* Espace entre la barre de recherche et les boutons de navigation */
display: flex; /* Permet d'aligner les éléments horizontalement */
align-items: center; /* Alignement vertical */
}
.search-form input[type="text"] {
padding: 10px;
border: 2px solid white; /* Bordure blanche */
background-color: rgba(255, 255, 255, 0.1); /* Fond légèrement transparent */
color: white; /* Couleur du texte */
border-radius: 5px; /* Coins arrondis */
vertical-align: middle; /* Alignement vertical */
}
.search-form button[type="submit"] {
padding: 10px;
background-color: transparent; /* Fond transparent */
border: 2px solid white; /* Bordure blanche */
color: white; /* Couleur du texte */
border-radius: 5px; /* Coins arrondis */
cursor: pointer;
vertical-align: middle; /* Alignement vertical */
}

View File

@@ -0,0 +1,31 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #490a56;
color: #fff;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
}
section {
margin-bottom: 20px;
}
h2 {
color: #490a56;
}
footer {
background-color: #490a56;
color: #fff;
padding: 10px 20px;
text-align: center;
}