40 lines
540 B
CSS
40 lines
540 B
CSS
body{
|
|
font-family: 'Roboto';
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.bloc1 {
|
|
text-align: left;
|
|
}
|
|
|
|
.fiche{
|
|
width: 200px;
|
|
background-color: rgba(237, 236, 254, 1);
|
|
|
|
}
|
|
|
|
#personne{
|
|
margin-top : 100px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
img{
|
|
margin-top: -50px;
|
|
width:150px;
|
|
clip-path:ellipse(50% 50%);
|
|
}
|
|
|
|
.nom {
|
|
font-weight: 900;
|
|
font-size: large;
|
|
}
|
|
.email {
|
|
font-size: medium;
|
|
font-weight: 700;
|
|
} |