You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
619 B
CSS
33 lines
619 B
CSS
6 years ago
|
.centrage{
|
||
|
text-align : center;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
.global {
|
||
|
position: absolute; /* postulat de départ */
|
||
|
top: 45%; left: 50%; /* à 50%/50% du parent référent */
|
||
|
transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
|
||
|
text-align : center;
|
||
|
|
||
|
}
|
||
|
|
||
|
.fort {
|
||
|
|
||
|
font-weight: bold;
|
||
|
text-align : center;
|
||
|
text-decoration: underline;
|
||
|
font-size : 30px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.bord{
|
||
|
|
||
|
border-radius: 20px;
|
||
|
border-left: 2px solid black;
|
||
|
border-right: 2px solid black;
|
||
|
border-top: 2px solid black;
|
||
|
border-bottom: 2px solid black;
|
||
|
padding : 20px 85px 60px 80px;
|
||
|
|
||
|
}
|
||
|
|