54 lines
898 B
CSS
54 lines
898 B
CSS
.projet-main-container {
|
|
background-color: #222;
|
|
display: grid;
|
|
grid-template-columns: 5fr 7fr;
|
|
}
|
|
|
|
.projet-images img {
|
|
width: 100%;
|
|
}
|
|
|
|
.projet-description {
|
|
height: calc(100vh - 20vmin);
|
|
top: 0;
|
|
padding: 10vmin;
|
|
position: sticky;
|
|
color: #f8fafc;
|
|
}
|
|
|
|
.projet-description h1 {
|
|
font-family: "Mona-Sans";
|
|
font-weight: 800;
|
|
font-size: 75px;
|
|
margin-top: 80px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.projet-description h2 {
|
|
font-family: "Overused Grotesk";
|
|
margin: 0;
|
|
font-weight: 100;
|
|
font-size: 35px;
|
|
}
|
|
|
|
.projet-description p {
|
|
font-family: "Overused Grotesk";
|
|
font-size: 19px;
|
|
}
|
|
|
|
.projet-contact-container {
|
|
background-color: #222 !important;
|
|
}
|
|
|
|
.projet-contact-container h1 {
|
|
color: #f8fafc !important;
|
|
}
|
|
|
|
.projet-contact-container a {
|
|
background-color: #f8fafc !important;
|
|
color: #222 !important;
|
|
}
|
|
|
|
.projet-footer-container .footer-menu {
|
|
border-top: 1px solid;
|
|
} |