Projet_Prog_Web/CSS/choix1.css

54 lines
800 B
CSS

body {
border: 8px solid;
color: blue;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background-color: black;
height: 95vh;
}
header {
border: 8px solid;
color: purple;
display: flex;
flex: 1;
}
#main {
display: flex;
flex: 4;
}
#content {
border: 8px solid;
color: blue;
display: flex;
flex-direction: column;
justify-content: space-around;
width: 50vw;
}
#text {
border: 8px solid;
font-family: 'Special Elite', cursive;
text-align: center;
color: white;
}
#buttons {
border: 8px solid;
color: red;
display: flex;
justify-content: space-around;
}
footer {
border: 8px solid;
color: green;
display: flex;
flex : 1;
}