28 lines
360 B
CSS
28 lines
360 B
CSS
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.bloc1 {
|
|
text-align: left;
|
|
}
|
|
|
|
.fiche{
|
|
background-color: rgba(237, 236, 254, 1);
|
|
|
|
}
|
|
|
|
#personne{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
img{
|
|
width:100px;
|
|
clip-path:ellipse(50% 50%);
|
|
}
|
|
|
|
.nom, .prenom {
|
|
display: inline;
|
|
} |