first commit

This commit is contained in:
2020-06-11 16:42:43 +02:00
commit 449ca1d987
5099 changed files with 622034 additions and 0 deletions
@@ -0,0 +1 @@
+146
View File
@@ -0,0 +1,146 @@
*::selection {
background: rgb(0, 255, 0);
}
header{
position: fixed;
width: 100%;
height: 40px;
top: 0;
padding: 0 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
background-color: white;
border-bottom: 2px solid rgb(0,0,0);
z-index: 999;
h1{
margin: auto 0;
}
nav{
margin: auto 0;
.burger{
display: none;
}
ul{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
li{
height: 40px;
margin-right: 50px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
transition: margin-right 1s;
&:last-child{
margin-right: 0px!important;
}
}
&.tags{
visibility: hidden;
position: absolute;
border-left: 2px solid black;
border-bottom: 2px solid black;
background: white;
top: 40px;
right: 0px;
width: auto;
z-index: 999;
a{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: auto;
height: 50px;
padding: 0 20px;
-webkit-transition: padding 0.5s;
transition: padding 0.5s;
& > li{
margin: auto;
position: relative;
&::after{
content: " ";
position: absolute;
height: 10px;
margin: auto;
background: rgb(0, 255, 0);
z-index: -1;
width: 0%;
-webkit-transition: all 0s;
transition: all 0s;
}
}
}
}
&.visible, &.active{
visibility: visible;
a{
& > li{
&::after{
background: rgb(0, 255, 0);
width: 0%;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
}
&:hover{
& > li{
&::after{
background: rgb(0, 255, 0);
width: 100%;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
}
}
}
}
}
// fleche
& > ul:nth-child(1) {
& > li:nth-child(1){
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
margin-right: 50px;
transition: margin-right 1s;
.cat{
width: 120%;
height: auto;
margin-left: 10px;
cursor: pointer;
img{
vertical-align: middle!important;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
}
&.act{
img{
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
}
a{
width: auto;
text-align: right;
}
}
}
}
}
@@ -0,0 +1,71 @@
.newsletter{
width: calc(100% / 3);
min-width: 400px;
height: auto;
padding: 0 20px 20px 20px;
.mc-field-group{
margin-top: 10px;
label{
width: 100%;
font-family: "Roboto-Light";
font-size: 0.8rem;
}
input{
width: 100%;
margin: 10px auto;
}
}
.indicates-required{
float: right;
font-family: "Roboto-Light";
font-size: 0.8rem;
}
.asterisk{
color: lime;
}
h2{
margin-bottom: 30px;
}
#mc_embed_signup div.mce_inline_error{
background-color: lime;
}
#mc_embed_signup input.mce_inline_error{
border-color: lime;
border-width: 1px;
padding: 5px;
border-radius: 2px;
}
.mce_inline_error{
font-family: "Roboto-Light";
font-size: 0.8rem;
}
.clear{
input{
font-family: "Roboto-Light";
clear: both;
background-color: #aaa;
border: 0 none;
border-radius: 2px;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-size: 0.8rem;
font-weight: bold;
height: 32px;
line-height: 32px;
margin: 0 10px 10px 0;
padding: 0 22px;
text-align: center;
text-decoration: none;
vertical-align: top;
white-space: nowrap;
width: auto;
}
.response{
font-family: "Roboto-Light";
font-size: 0.8rem;
margin-bottom: 10px;
}
}
}
@@ -0,0 +1,69 @@
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100% ;
vertical-align: baseline;
}
html, body{
font-size: 16px;
line-height: 18px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
margin: 0;
}
ol, ul {
list-style: none;
}
a{
text-decoration: none;
color:black;
}
blockquote, q {
quotes: none;
}
img{
width: 100%;
height: auto;
vertical-align: bottom;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
@@ -0,0 +1,362 @@
@media screen and (max-width: 1024px) {
header{
.navbar{
li{
margin-right: 20px!important;
}
.tags{
a{
padding: 0 10px;
-webkit-transition: padding 0.5s;
transition: padding 0.5s;
}
}
}
}
}
@media screen and (max-width: 700px) {
header{
position: fixed;
width: 100%;
height: 40px;
top: 0;
padding: 0 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
background-color: white;
border-bottom: 2px solid rgb(0,0,0);
z-index: 999;
h1{
margin: auto 0;
}
nav{
ul{
display: none;
&.open{
// height: 100vh;
width: 100vw;
left: 0;
top: 38px;
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 2px solid #000;
background: white;
li{
height: 40px;
text-align: center;
border-bottom: 2px solid black;
width: 100vw;
text-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
&:first-child{
border-top: 2px solid black;
// flex-direction: column;
.cat{
width: 10px;
position: absolute;
right: 45px;
img{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
}
&:last-child{
margin-right: 20px!important;
border-bottom: 0px solid #000;
}
&.act{
.cat{
img{
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
}
}
}
.tags{
position: relative;
border: none;
top:-2px;
border-bottom: 2px solid black;
background: rgb(0, 255, 0);
a{
padding: 0;
margin:0;
height: 40px;
li{
margin: 0;
}
}
}
}
}
& > .tags{
& > a {
height: 30px!important;
li{
position: relative;
z-index: 0;
&::after{
content: " ";
position: absolute;
background: rgb(0, 255, 0);
height: 10px;
margin: auto;
z-index: -1;
-webkit-transition: width 0.5s;
transition: width 0.5s;
width: 0%;
}
}
&:hover{
li{
&::after{
content: " ";
position: absolute;
background: rgb(0, 255, 0);
height: 10px;
margin: auto;
z-index: -1;
width: 100%;
-webkit-transition: width 0.5s;
transition: width 0.5s;
}
}
}
}
}
.col {
width: auto;
text-align: center;
height: auto;
position: absolute;
top: 10px;
right: 20px;
}
.burger{
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: auto;
margin: 0 auto;
-webkit-transition: all .7s ease;
transition: all .7s ease;
.bar {
display: block;
height: 2px;
width: 20px;
background: black;
margin: 3px auto;
-webkit-transition: all .7s ease;
transition: all .7s ease;
}
.middle {
margin: 0 auto;
}
&:hover{
// .bar{
// background-color: rgb(0, 255, 0);
// }
.top {
-webkit-transform: translateY(5px) rotateZ(45deg);
transform: translateY(5px) rotateZ(45deg);
}
.middle {
width: 0;
}
.bottom {
-webkit-transform: translateY(-5px) rotateZ(-45deg);
transform: translateY(-5px) rotateZ(-45deg);
}
}
}
}
ul.tags{
display: none;
}
ul.visible, ul.active{
border-left: 2px solid black;
border-bottom: 2px solid black;
background: white;
display: block;
position: absolute;
top: 40px;
right: 0px;
width: auto;
z-index: 999;
a{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: auto;
height: 40px;
padding: 0 20px;
&:first-child{
margin-top: 0px;
}
&:last-child{
margin-bottom: 10px;
}
li{
margin: auto;
}
}
}
}
#start{
margin-top: 40px;
//home
.item{
display: block;
.card{
position: relative;
width: 100%;
overflow-y: hidden;
padding-bottom: 5px;
margin-left: 0px!important;
margin-right: 0px!important;
&:last-child{
padding-bottom: 0px!important;
}
.card-image:hover{
-webkit-transition: all 0.6s;
transition: all 0.6s;
background-color: rgb(0, 255, 0);
img{
-webkit-transition: all .6s;
transition: all .6s;
mix-blend-mode: multiply;
opacity: .95;
}
& ~ .card-title{
top: 50%;
left: 50%;
opacity: 1;
-webkit-transition: opacity 1s, top 0s;
transition: opacity 1s, top 0s;
}
}
.card-title{
pointer-events: none;
position: absolute;
left: 50%;
top: 50%;
opacity: 0;
-webkit-transition: all 1s;
transition: all 1s;
-webkit-transform: translate(-50% , -50%);
transform: translate(-50% , -50%);
}
}
}
//pageprojet
.content-item{
.e-content{
display: block;
height: 100%;
}
.media{
width: 100%;
}
.content{
width:100%;
min-width: auto!important;
height: auto;
.txt{
position: relative;
right: 0;
width: 100%;
min-width: auto!important;
height: auto!important;
padding: 20px 20px 0px 20px;
overflow-x: auto;
h3{
margin: 0px 0 10px 0;
}
}
.taxonomy{
width: 100%;
min-width: auto!important;
height: auto;
background: white;
position:relative;
bottom: 0;
border-top: 2px solid black;
.tags{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: auto 0;
padding-bottom: 10px;
a{
margin: 10px 10px 0 10px;
&:first-child{
margin-left: 20px!important;
}
}
}
}
}
}
//page news
.news{
width: 100%;
min-width: auto!important;
height: auto;
padding: 10px 20px 10px 20px;
border-bottom: 2px solid black;
&:nth-child(1){
padding-top: 20px;
}
h3{
pointer-events: none;
margin-bottom: 10px;
}
}
.about{
width:100%;
min-width: auto!important;
height: auto;
padding: 20px;
h3{
pointer-events: none;
margin-bottom: 10px;
}
}
}
}
@@ -0,0 +1,225 @@
.full{
z-index: 999;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
& > div{
z-index: 999;
position: absolute;
width: 100%;
top: 100px;
text-align: center;
& > p{
display: inline-block;
a{
color: lime;
font-weight: bold;
text-decoration: underline;
margin: 0 10px;
&::after{
background: none;
}
}
}
}
& > img{
position: absolute;
top: 0;
left: 0;
}
}
#start{
margin-top: 40px;
//home
.item{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: distribute;
.card{
position: relative;
width: calc((100% / 3) - 3.5px);
overflow-y: hidden;
padding-bottom: 5px;
&:nth-child(3n+2){
margin: 0 5px;
}
.card-image{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.card-subtitle{
a{
padding: 0px 7px;
background-color: rgba(0, 255, 0,0.5);
}
}
.card-image:hover{
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-ms-filter: grayscale(0%);
-o-filter: grayscale(0%);
-webkit-transition: all 1s ease;
transition: all 1s ease;
// -webkit-transition: all 0.6s;
// transition: all 0.6s;
// background-color: rgb(0, 255, 0);
img{
-webkit-transition: all .6s;
transition: all .6s;
mix-blend-mode: multiply;
opacity: .95;
}
& ~ .card-title{
top: 50%;
left: 50%;
opacity: 1;
-webkit-transition: all 1s;
transition: all 1s;
}
}
.card-title{
pointer-events: none;
position: absolute;
left: 50%;
top: 50%;
opacity: 0;
-webkit-transition: all 1s;
transition: all 1s;
-webkit-transform: translate(-50% , -50%);
transform: translate(-50% , -50%);
text-align: center;
}
}
}
//pageprojet
.content-item{
.e-content{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 100%;
}
.media{
width: calc((100% / 3) * 2);
img:not(:last-child){
margin-bottom: 5px;
}
.grav-vimeo{
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
padding-top: 0!important;
max-width: 100%;
height: auto;
iframe, object, embed{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
video{
width: 100%;
height: auto;
}
}
.content{
width: calc(100% / 3);
min-width: 400px;
height: calc(100vh - 40px);
.txt{
position: fixed;
right: 0;
width: calc(100% / 3);
min-width: 400px;
height: calc(100% - 90px);
padding: 20px 30px 0px 30px;
overflow-x: auto;
&::-webkit-scrollbar {
width: 12px;
}
/* Track */
&::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px white;
border-radius: 10px;
}
/* Handle */
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: white;
-webkit-box-shadow: inset 0 0 0px white;
}
h3{
margin: 0px 0 10px 0;
}
}
.taxonomy{
width: calc(100% / 3);
min-width: 400px;
height: auto;
background: white;
position:fixed;
bottom: 0;
border-top: 2px solid black;
.tags{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: auto 0;
padding-bottom: 10px;
a{
margin: 10px 10px 0 10px;
&:first-child{
margin-left: 30px!important;
}
}
}
}
}
}
//page news
.e-content.news{
display: inline-flex;
width: 100%;
flex-wrap: wrap;
}
.news{
width: calc(100% / 5 );
min-width: 340px;
height: auto;
padding: 20px;
h3{
pointer-events: none;
margin-bottom: 10px;
}
}
.about{
width: calc(100% / 3 );
min-width: 400px;
height: auto;
padding: 20px;
h3{
pointer-events: none;
margin-bottom: 10px;
}
}
}
@@ -0,0 +1,147 @@
h1, h2, h3, h4, h5, h6{
font-family: $roboto_regular;
font-size: 1rem;
font-weight: normal;
}
h1{
a{
font-family: $roboto_regular;
font-size: 1rem;
font-weight: normal;
}
}
h2{
a{
font-family:$roboto_medium;
color: white;
font-size:1.5rem;
font-weight: normal;
}
}
h3{
font-family: $roboto_regular;
font-size: 0.8rem;
text-transform: uppercase;
a{
font-weight: normal;
position: relative;
&::after{
content: " ";
background: rgb(0, 255, 0);
position: absolute;
top: 5px;
left: 0;
height: 9px;
width: 100%;
margin: auto;
z-index: -1;
}
}
}
nav{
li{
a{
font-family:$roboto_regular;
font-size:0.8rem;
text-transform: uppercase;
font-weight: normal;
}
}
a{
li{
font-family:$roboto_regular;
font-size:0.8rem;
text-transform: uppercase;
font-weight: normal;
}
}
}
p{
font-family: $roboto_light;
font-size: 0.8rem;
margin-bottom: 10px;
a{
font-weight: normal;
position: relative;
&::after{
content: " ";
background: rgb(0, 255, 0);
position: absolute;
top: 5px;
left: 0;
height: 9px;
width: 100%;
margin: auto;
z-index: -1;
}
}
}
#start{
.card-title{
line-height: 1.60rem;
h2{
a{
font-family: $roboto_regular;
font-size: 1.2rem;
}
}
}
}
.taxonomy{
a{
font-family:$roboto_regular;
font-size:0.8em;
text-transform: uppercase;
font-weight: normal;
}
a{
position: relative;
&::after{
-webkit-transition: width 0.5s;
transition: width 0.5s;
content: " ";
background: rgb(0, 255, 0);
position: absolute;
width: 0%;
height: 10px;
z-index: -1;
left: 0;
margin: auto;
top: 4px;
}
}
a:hover{
&::after{
-webkit-transition: width 0.5s;
transition: width 0.5s;
width: 100%;
}
}
}
.news{
h3{
font-family:$roboto_regular;
text-transform: uppercase;
font-weight: normal;
}
.blog-date{
time{
font-family:$roboto_light;
text-transform: uppercase;
font-weight: normal;
font-size:0.8em;
}
}
}