70 lines
1.2 KiB
CSS
70 lines
1.2 KiB
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{
|
|
|
|
border: 2px solid #666;
|
|
border-radius: 10px;
|
|
padding : 15px;
|
|
margin : 5px;
|
|
display : grid;
|
|
grid-template-columns: repeat(2,1fr);
|
|
width: 400px;
|
|
height: 810px;
|
|
/* grid-template-rows: 150px 150px;*/
|
|
align-items: center;
|
|
gap : 10px;
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
ul{
|
|
display: grid;
|
|
color: antiquewhite;
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
.prepa_recette{
|
|
border: 2px solid #666;
|
|
border-radius: 10px;
|
|
padding : 15px;
|
|
margin : 5px;
|
|
display : grid;
|
|
/*grid-template-columns: repeat(3,2fr);*/
|
|
width: 800px;
|
|
height: 810px;
|
|
grid-template-rows: 200px 1fr;*/
|
|
align-items: center;
|
|
gap : 10px;
|
|
box-sizing: border-box;
|
|
} |