62 lines
967 B
CSS
62 lines
967 B
CSS
#nav_bar_produit{
|
|
border : 2px solid #666;
|
|
padding : 15px;
|
|
border-radius : 12px;
|
|
margin : 5px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
body{
|
|
background-color: #FCCD6F;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
#bouton_accueil{
|
|
padding : 5px;
|
|
border-radius : 3px;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
#texte_milieu{
|
|
color : red;
|
|
|
|
}
|
|
|
|
#logo_gauche{
|
|
color : black;
|
|
}
|
|
|
|
.ingr_ustensiles{
|
|
|
|
display: grid;
|
|
grid-template-columns: 250px 1fr;
|
|
gap: 10px;
|
|
width: 100%;
|
|
height: 150px;
|
|
|
|
|
|
}
|
|
|
|
ul{
|
|
display: grid;
|
|
color: antiquewhite;
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
#rectangle_1{
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
#rectangle_2{
|
|
display: grid;
|
|
place-items: center;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|