projet_prog_web/styles.css

55 lines
No EOL
907 B
CSS

* {
margin: 0;
padding: 0;
}
header{
background-color: white;
text-align: center;
padding-top: 5px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 35px;
color:rgb(99, 45, 23);
font-weight: bold;
}
section{
padding-top: 5%;
align-items: center;
}
.grille_haut {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.grille_haut div {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-gap: 5px;
padding-top: 5px;
}
.grille_haut div div {
background-color: rgb(243, 215, 199);
border-radius: 5px;
width: 45px;
height: 45px;
}
footer{
display: flex;
flex-wrap: wrap;
position: absolute;
bottom: 0;
left: 0;
right: 0;
justify-content: space-evenly;
}
footer div {
padding-bottom: 5px;
}