This commit is contained in:
2018-08-28 12:38:43 +02:00
parent 723314fbb8
commit 8410204991
6 changed files with 326 additions and 23 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+9 -8
View File
@@ -24,13 +24,13 @@ function hovercat() {
); );
} }
function active() { // function active() {
var $work = $('.navbar > ul > li:nth-child(1)'); // var $work = $('.navbar > ul > li:nth-child(1)');
//
$work.click(function(event) { // $work.click(function(event) {
$(this).parents().find('.tags').toggleClass("active"); // $(this).parents().find('.tags').toggleClass("active");
}); // });
} // }
function catprojets() { function catprojets() {
@@ -51,7 +51,8 @@ function catprojets() {
} }
jQuery(document).ready(function($) { jQuery(document).ready(function($) {
active(); // active();
hovercat(); hovercat();
catprojets(); catprojets();
}); });
+1 -1
View File
@@ -13,7 +13,7 @@
//section //section
@import "template/section"; @import "template/section";
// @import "template/section-media-queries"; @import "template/section-media-queries";
//sectiongrid //sectiongrid
// @import "template/grid"; // @import "template/grid";
@@ -0,0 +1,240 @@
@media screen and (max-width: 700px) {
header{
position: fixed;
width: 100%;
height: 40px;
top: 0;
padding: 0 20px;
display: flex;
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;
& > .tags{
& > a {
li{
position: relative;
z-index: 0;
&::after{
content: " ";
position: absolute;
background: rgb(0, 255, 0);
height: 10px;
margin: auto;
z-index: -1;
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%;
transition: width 0.5s;
}
}
}
}
}
& > ul:nth-child(1) {
& > li:nth-child(1){
display: flex;
position: relative;
margin-right: 35px;
& > a{
pointer-events: none;
}
&:after{
content: " ";
cursor: pointer;
display: block;
width: 25px;
height: 40px;
background-image: url(../images/fleche2.svg);
background-repeat: no-repeat;
background-position: center;
// background-size: 10px;
position: absolute;
right: -25px;
transition: all 0.5s;
}
&.hover{
&:after{
transform: rotate(180deg);
transition: all 0.5s;
}
}
}
}
}
ul{
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
li{
height: 40px;
margin-right: 20px;
align-items: center;
display: flex;
&:last-child{
margin-right: 0px!important;
}
}
}
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: flex;
width: auto;
height: 40px;
padding: 0 20px;
&:first-child{
margin-top: 10px;
}
&: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{
transition: all 0.6s;
background-color: rgb(0, 255, 0);
img{
transition: all .6s;
mix-blend-mode: multiply;
opacity: .95;
}
& ~ .card-title{
top: 50%;
left: 50%;
opacity: 1;
transition: opacity 1s, top 0s;
}
}
.card-title{
pointer-events: none;
position: absolute;
left: 50%;
top: 50%;
opacity: 0;
transition: all 1s;
transform: translate(-50% , -50%);
}
}
}
//pageprojet
.content-item{
.e-content{
display: block;
height: 100%;
}
.media{
width: 100%;
}
.content{
width:100%;
min-width: auto!important;
.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;
span{
display: flex;
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;
&: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;
}
}
}
}
+19 -3
View File
@@ -1,10 +1,15 @@
#start{ #start{
margin-top: 40px; margin-top: 40px;
//home //home
& > #items{
& > .item{
justify-content: space-between!important;
}
}
.item{ .item{
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-around;
.card{ .card{
position: relative; position: relative;
width: calc((100% / 3) - 3.5px); width: calc((100% / 3) - 3.5px);
@@ -32,9 +37,11 @@
pointer-events: none; pointer-events: none;
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%;
opacity: 0; opacity: 0;
transition: all 1s; transition: all 1s;
transform: translateX(-50%); transform: translate(-50% , -50%);
text-align: center;
} }
} }
} }
@@ -49,11 +56,13 @@
} }
.content{ .content{
width: calc(100% / 3); width: calc(100% / 3);
min-width: 400px;
height: calc(100vh - 40px); height: calc(100vh - 40px);
.txt{ .txt{
position: fixed; position: fixed;
right: 0; right: 0;
width: calc(100% / 3); width: calc(100% / 3);
min-width: 400px;
height: calc(100% - 90px); height: calc(100% - 90px);
padding: 20px 30px 0px 30px; padding: 20px 30px 0px 30px;
overflow-x: auto; overflow-x: auto;
@@ -63,6 +72,7 @@
} }
.taxonomy{ .taxonomy{
width: calc(100% / 3); width: calc(100% / 3);
min-width: 400px;
height: auto; height: auto;
background: white; background: white;
position:fixed; position:fixed;
@@ -72,8 +82,12 @@
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
margin: auto 0; margin: auto 0;
padding-bottom: 10px;
a{ a{
margin: 10px 30px; margin: 10px 10px 0 10px;
&:first-child{
margin-left: 30px!important;
}
} }
} }
} }
@@ -82,6 +96,7 @@
//page news //page news
.news{ .news{
width: calc(100% / 7 ); width: calc(100% / 7 );
min-width: 340px;
height: auto; height: auto;
padding: 20px; padding: 20px;
h3{ h3{
@@ -91,6 +106,7 @@
} }
.about{ .about{
width: calc(100% / 3 ); width: calc(100% / 3 );
min-width: 400px;
height: auto; height: auto;
padding: 20px; padding: 20px;
h3{ h3{