This commit is contained in:
armansansd 2021-09-15 18:06:05 +02:00
parent 5c915940ca
commit eccb63c031
6 changed files with 36 additions and 35 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -300,9 +300,9 @@ if($(".page-node-type-programme").length > 0 || $(".page-node-type-projet").leng
if($(".field_partenaires").is(":visible")){ if($(".field_partenaires").is(":visible")){
$(".field_partenaires").fadeOut("slow"); $(".field_partenaires").fadeOut("slow");
}else{ }else{
$(".field_partenaires").fadeIn("slow", function( $(".field_partenaires").fadeIn("slow", function(){
$(this).css("display","grid") $(this).css("display","grid")
)); });
} }
}); });
@ -317,7 +317,7 @@ if($(".page-node-type-programme").length > 0 || $(".page-node-type-projet").leng
}); });
} };
//page about navigation : //page about navigation :

View File

@ -12,7 +12,26 @@ article, .paragraph{
margin-bottom: .5rem; margin-bottom: .5rem;
} }
} }
.prog-ressources-link,.ressources-link{
display: inline-block;
margin: 0 auto;
background: black;
color: white;
font-family: "trueno";
font-weight: 500;
padding: .3rem .7rem;
font-size: $font-small;
text-decoration: none;
text-transform: uppercase;
&:hover{
color:black;
background: white;
}
}
.block-region-first,.block-region-third{ .block-region-first,.block-region-third{
h2{ h2{
font-size: $font-big; font-size: $font-big;

View File

@ -15,6 +15,12 @@
grid-column: 1 / span 3; grid-column: 1 / span 3;
// overflow: hidden; // overflow: hidden;
} }
>div:last-of-type{
grid-column: 1 / span 3;
background-color: transparent;
text-align: center;
padding: 1rem;
}
} }
.header_top_left_container{ .header_top_left_container{
@ -264,12 +270,6 @@
} }
} }
} }
.main_logo{ .main_logo{

View File

@ -511,6 +511,12 @@
} }
.block-region-bottom{ .block-region-bottom{
background: $trame; background: $trame;
>div:last-of-type{
background-color: transparent;
text-align: center;
padding: 1rem;
}
h2{ h2{
text-align: center; text-align: center;
} }
@ -691,30 +697,6 @@
} }
} }
} }
footer{
background-color: transparent;
text-align: center;
padding: 1rem;
a{
display: inline-block;
margin: 0 auto;
background: black;
color: white;
font-family: "trueno";
font-weight: 500;
padding: .3rem .7rem;
font-size: $font-small;
text-decoration: none;
text-transform: uppercase;
&:hover{
color:black;
background: white;
}
}
}
} }
} }