2024-03-26 14:22:54 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-400-book-webfont.woff") format("woff"), url("../fonts/jost-400-book-webfont.woff2") format("woff2");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-300-lightitalic-webfont.woff") format("woff"), url("../fonts/jost-300-lightitalic-webfont.woff2") format("woff2");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-500-medium-webfont.woff") format("woff"), url("../fonts/jost-500-medium-webfont.woff2") format("woff2");
|
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-500-mediumitalic-webfont.woff") format("woff"), url("../fonts/jost-500-mediumitalic-webfont.woff2") format("woff2");
|
|
|
|
font-weight: 500;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-700-bold-webfont.woff") format("woff"), url("../fonts/jost-700-bold-webfont.woff2") format("woff2");
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Jost";
|
|
|
|
src: url("../fonts/jost-700-bolditalic-webfont.woff") format("woff"), url("../fonts/jost-700-bolditalic-webfont.woff2") format("woff2");
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
* {
|
|
|
|
font-family: "Jost", sans-serif;
|
|
|
|
}
|
|
|
|
* a, * a:hover, * a:active, * a:focus, * a:visited {
|
|
|
|
color: #0066ff;
|
|
|
|
}
|
|
|
|
* ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2024-04-21 18:29:43 +02:00
|
|
|
body {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2024-03-26 14:22:54 +01:00
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
width: 100vw;
|
|
|
|
max-height: 10vh;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: solid 1px #444;
|
|
|
|
}
|
|
|
|
header #logo {
|
|
|
|
width: 7.5vh;
|
|
|
|
height: 7.5vh;
|
|
|
|
padding: 1vh;
|
|
|
|
}
|
|
|
|
header #logo img {
|
|
|
|
width: 100%;
|
|
|
|
transform: scale(1.2) translateY(0.8rem);
|
|
|
|
}
|
|
|
|
header #main-title {
|
|
|
|
align-self: flex-end;
|
|
|
|
}
|
|
|
|
header #main-title h1 {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #000;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
header #hamburger {
|
|
|
|
padding: 1.5rem 1rem;
|
|
|
|
width: 7.5vh;
|
|
|
|
height: 7.5vh;
|
|
|
|
border-left: solid 1px #444;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
cursor: pointer;
|
2024-03-26 16:53:02 +01:00
|
|
|
outline: unset;
|
2024-03-26 14:22:54 +01:00
|
|
|
}
|
|
|
|
header #hamburger div {
|
2024-03-26 16:53:02 +01:00
|
|
|
outline: unset;
|
2024-03-26 14:22:54 +01:00
|
|
|
border-bottom: solid 1px #000;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #000;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.2s ease-out, transform 0.4s ease-out;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
header #hamburger.open div:first-of-type {
|
|
|
|
transform: translate(0rem, calc(3.75vh - 1.5rem)) rotate(-45deg);
|
|
|
|
}
|
|
|
|
header #hamburger.open div:nth-of-type(2) {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
header #hamburger.open div:last-of-type {
|
|
|
|
transform: translate(0rem, calc((3.75vh - 1.5rem) * -1)) rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
background-color: #0066ff;
|
|
|
|
max-height: 0vh;
|
|
|
|
height: auto;
|
|
|
|
transition: max-height 0.8s ease-out;
|
|
|
|
}
|
|
|
|
nav ul {
|
|
|
|
padding: 1rem 0 1rem 7.5vh;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
nav ul li a, nav ul li a:hover, nav ul li a:active, nav ul li a:focus, nav ul li a:visited {
|
|
|
|
padding-left: 0;
|
|
|
|
transition: padding-left 0.3s ease-out;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
nav ul li a:hover {
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav.open {
|
|
|
|
max-height: 20vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about {
|
|
|
|
color: #0066ff;
|
|
|
|
line-height: 1.4;
|
|
|
|
border-bottom: solid 1px #000;
|
|
|
|
padding: 1rem 1.2rem 1rem 1.2rem;
|
|
|
|
font-weight: 500;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: repeat(3, auto);
|
|
|
|
justify-items: center;
|
|
|
|
}
|
|
|
|
#about #about-hidden {
|
|
|
|
overflow: hidden;
|
|
|
|
height: auto;
|
|
|
|
max-height: 0vh;
|
|
|
|
transition: max-height 1s ease-out;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
#about #about-hidden.open {
|
|
|
|
max-height: 50vh;
|
|
|
|
}
|
|
|
|
#about #about-arrow {
|
|
|
|
width: 7.5vh;
|
|
|
|
height: 3.75vh;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin-top: 1rem;
|
|
|
|
transform: rotate(0deg) scale(0.5);
|
|
|
|
transition: transform 0.5s ease-out;
|
|
|
|
cursor: pointer;
|
2024-03-26 16:53:02 +01:00
|
|
|
outline: unset;
|
2024-03-26 14:22:54 +01:00
|
|
|
}
|
|
|
|
#about #about-arrow div {
|
2024-03-26 16:53:02 +01:00
|
|
|
outline: unset;
|
2024-03-26 14:22:54 +01:00
|
|
|
width: 50%;
|
|
|
|
border-bottom: solid 1px #000;
|
|
|
|
}
|
|
|
|
#about #about-arrow div:first-of-type {
|
|
|
|
transform: translateX(50%) translateY(-1rem) rotate(45deg);
|
|
|
|
}
|
|
|
|
#about #about-arrow div:last-of-type {
|
|
|
|
transform: translateX(-50%) translateY(-1rem) rotate(-45deg);
|
|
|
|
}
|
|
|
|
#about #about-arrow.open {
|
|
|
|
transform: rotate(180deg) scale(0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: grid;
|
|
|
|
padding: 1.2rem;
|
|
|
|
}
|
|
|
|
main .article-card {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
margin: 2rem 0;
|
|
|
|
}
|
|
|
|
main .article-card .img-cover {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
max-height: 40vh;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
main .article-card .img-cover .eye {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
transition: opacity 0.3s ease-out;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
main .article-card .img-cover .eye .eye-picto {
|
|
|
|
width: 35%;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-mask: url(../images/eye.svg) no-repeat center;
|
|
|
|
mask: url(../images/eye.svg) no-repeat center;
|
|
|
|
mask-size: 100%;
|
|
|
|
-webkit-mask-size: 100%;
|
|
|
|
background-color: #0066ff;
|
|
|
|
}
|
|
|
|
main .article-card .img-cover > img {
|
|
|
|
z-index: 0;
|
|
|
|
width: 100%;
|
|
|
|
transform: scale(1);
|
|
|
|
transition: transform 0.3s ease-out;
|
|
|
|
}
|
|
|
|
main .article-card .date {
|
|
|
|
margin-top: 0.8rem;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #0066ff;
|
|
|
|
}
|
|
|
|
main .article-card h3 {
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
main .article-card:hover .img-cover .eye {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
main .article-card:hover .img-cover > img {
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
|
|
|
position: fixed;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
z-index: 3;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
article #article-wrapper {
|
|
|
|
border: solid 1px #000;
|
|
|
|
width: 95vw;
|
|
|
|
max-height: 90vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: #fff;
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 3rem;
|
|
|
|
margin-top: 2rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .article-siblings {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 7vw;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .article-siblings a {
|
|
|
|
color: #000;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .article-siblings a i {
|
|
|
|
font-size: 0.5rem;
|
|
|
|
padding: 0.3rem;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .close-article {
|
|
|
|
z-index: 11;
|
|
|
|
display: block;
|
|
|
|
padding-top: 0.75rem;
|
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
|
|
|
position: absolute;
|
|
|
|
right: 0.5rem;
|
|
|
|
top: -1.5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .close-article div {
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: solid 1px #000;
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .close-article div:first-of-type {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
article #article-wrapper .article-header .close-article div:last-of-type {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper {
|
|
|
|
overflow: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.3s ease-out;
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper .swiper-wrapper .swiper-slide {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0 7vw;
|
2024-04-21 18:29:43 +02:00
|
|
|
display: flex;
|
|
|
|
height: auto;
|
|
|
|
align-items: center;
|
2024-03-26 14:22:54 +01:00
|
|
|
}
|
|
|
|
article #article-wrapper .swiper .swiper-wrapper .swiper-slide img {
|
|
|
|
box-sizing: content-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-04-21 18:29:43 +02:00
|
|
|
article #article-wrapper .swiper .swiper-wrapper .swiper-slide video {
|
|
|
|
box-sizing: content-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-03-26 14:22:54 +01:00
|
|
|
article #article-wrapper .swiper .swiper-button-prev, article #article-wrapper .swiper .swiper-button-next {
|
|
|
|
color: #000;
|
|
|
|
transform: scale(0.5);
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper .swiper-button-prev {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper .swiper-button-next {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
article .article-date {
|
|
|
|
padding: 0 7vw;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #0066ff;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
article .article-titre {
|
|
|
|
padding: 0 7vw;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
article .article-content {
|
|
|
|
padding: 0 7vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 960px) {
|
|
|
|
header #logo {
|
|
|
|
width: 15vw;
|
|
|
|
}
|
|
|
|
header #logo img {
|
|
|
|
padding-left: 40%;
|
|
|
|
padding-right: 10%;
|
|
|
|
}
|
|
|
|
header #main-title {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
header #main-title h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
padding-left: 2.5vw;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
nav ul {
|
|
|
|
padding: 1rem 0 1rem 15vw;
|
|
|
|
}
|
|
|
|
#about {
|
|
|
|
grid-template-columns: repeat(2, auto);
|
|
|
|
grid-template-rows: repeat(2, auto);
|
|
|
|
padding: 1rem 0 1rem 15vw;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#about #about-summary {
|
|
|
|
padding-right: calc(15vw - 7.5vh);
|
|
|
|
}
|
|
|
|
#about #about-hidden {
|
|
|
|
grid-row: 2;
|
|
|
|
grid-column: 1;
|
|
|
|
padding-right: calc(15vw - 7.5vh);
|
|
|
|
}
|
|
|
|
#about #about-arrow {
|
|
|
|
grid-row: 1/3;
|
|
|
|
grid-column: 2;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
#about #about-hidden.open {
|
|
|
|
max-height: 20vh;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
column-gap: 2rem;
|
|
|
|
}
|
|
|
|
main .article-card .img-cover {
|
|
|
|
max-height: 20vh;
|
|
|
|
}
|
|
|
|
article #article-wrapper {
|
|
|
|
width: 60vw;
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper-button-prev {
|
|
|
|
left: 1rem !important;
|
|
|
|
}
|
|
|
|
article #article-wrapper .swiper-button-next {
|
|
|
|
right: 1rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 1280px) {
|
|
|
|
main {
|
|
|
|
margin: 2rem 15vw;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*# sourceMappingURL=styles.css.map */
|