1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| .projet-fin-parts {
display:flex;
}
.projet-fin-parts > h6 {
flex:1 1 50%;
display:flex;
justify-content:center;
font-size: 20px;
font-family:Arial,sans-serif;
}
.projet-fin-parts > h6 span {
display:inline-block;
vertical-align:top;
}
.projet-fin-parts > h6 > span:first-child {
text-align:right;
}
.projet-fin-parts > h6 > span:last-child,
.projet-fin-parts > h6 > span:first-child span {
color: #C9C7C7;
font-weight: normal;
font-size: 80%; /* 80% de 20px */
}
.projet-fin-parts > h6 > span:nth-child(2) {
font-weight: bold;
font-size: 220%; /* 220% de 20px */
padding:0 3px;
} |
Partager