georgiaclemencon / projet_Restau

Projet de web-dev
0 stars 0 forks source link

Main_page.css (with index.php) #4

Open georgiaclemencon opened 1 year ago

georgiaclemencon commented 1 year ago

/ Style général / @font-face { font-family: "PlumePLUME"; / Remplacez par le nom que vous souhaitez utiliser pour la police / src: url('C:/wamp64/www:PROJET_HTML/PlumePLUME.ttf'); / Remplacez par le chemin vers votre fichier TTF / font-family: "AramisItalic"; src: url('C:/wamp64/www:PROJET_HTML/Aramis Italic.ttf'); font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif }

menuButton {

display: block; margin: 20px auto; padding: 10px 20px; background-color: #9c928d; color: #fff; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; }

button:nth-child(1) { margin-top: 160; } button:nth-child(2) { margin-top: 270; } button:nth-child(3) { margin-top: 380; }

button:hover { background-color: #ffcc29; color: #613a39; transform: scale(1.1); }

/ CSS styles for the sections /

/ Style de la section Entrées /

entree {

background-color: #9c928d;
color: #fff;
padding: 50px;
display: none;
position:absolute;
bottom: 0;
left: 50%;
/* transform: translateX(-50%); */

}

/ Style de la section Plats /

plat {

background-color: #7b6663;
color: #fff;
padding: 50px;
display: none;
position:absolute;
bottom: 0;
left: 50%;

}

/ Style de la section Desserts /

dessert {

background-color: #c6ac9c;
color: #fff;
padding: 50px;
display: none;
position:absolute;
bottom: 0;
left: 50%;

}

menu {

background-color: #f2eee8;
display: flex;
justify-content: center;
align-items: center;
min-height: 500px;
padding-top: 50px;
padding-bottom: 50px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);

}

/ Style des éléments du menu / h3 { font-size: 1.8em; margin-bottom: 10px; }

ul { list-style-type: none; margin-bottom: 30px; }

li { font-size: 1.4em; margin-bottom: 10px; }

.luxury { background-color: gold; border-radius: 10px; }