35 lines
No EOL
747 B
CSS
35 lines
No EOL
747 B
CSS
.header {
|
|
width: 100%;
|
|
}
|
|
|
|
.headerMenu {
|
|
font-family: 'Poppins';
|
|
font-weight: 400; /*regular*/
|
|
font-size: 1.25rem; /*20px*/
|
|
color: #000; /*Noir pur*/
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.headerMenuElement:hover {
|
|
border-bottom: 5px #FF563C solid; /*Orange Highlight*/
|
|
cursor: pointer;
|
|
}
|
|
|
|
.heading1 {
|
|
font-family: 'Poppins';
|
|
font-weight: 600; /*semi-bold*/
|
|
font-size: 6rem; /*96px*/
|
|
color: #394596; /*Bleu AGECEM*/
|
|
text-align: center;
|
|
}
|
|
|
|
.heading2 {
|
|
font-family: 'Poppins';
|
|
font-weight: 600; /*semi-bold*/
|
|
font-size: 1.5rem; /*24px*/
|
|
color: #394596; /*Bleu AGECEM*/
|
|
text-align: center;
|
|
} |