new header css
This commit is contained in:
@@ -16,33 +16,29 @@
|
||||
box-shadow: 1px 0px 8px $black;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
// justify-content: space-between;
|
||||
color: $black;
|
||||
top:0%;
|
||||
|
||||
scroll-margin: 8rem {};
|
||||
|
||||
|
||||
|
||||
// logo + menu déroulant
|
||||
// logo
|
||||
.region-header-top-left {
|
||||
width: 80vw;
|
||||
// width: 80vw;
|
||||
display:flex;
|
||||
flex-direction: row;
|
||||
padding: 1rem;
|
||||
// padding: 1rem;
|
||||
padding-left: 4%;
|
||||
align-items:center;
|
||||
color: $black;
|
||||
font-weight: 800;
|
||||
// font-weight: 800;
|
||||
flex: 1;
|
||||
|
||||
|
||||
#block-logogouv{
|
||||
display: flex;
|
||||
height: 100%;
|
||||
align-items: center;
|
||||
img{
|
||||
width: 80%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@@ -53,83 +49,118 @@
|
||||
|
||||
img{
|
||||
// min-width: 80px;
|
||||
width: 80%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
#block-headermenu{
|
||||
align-self: baseline;
|
||||
width: 70%;
|
||||
margin-left: 3rem;
|
||||
margin-right: 3rem;
|
||||
}
|
||||
|
||||
ul{
|
||||
font-size: 1rem;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
padding-inline-start: 0px;
|
||||
padding: 1rem;
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
ul{
|
||||
position: absolute;
|
||||
left: -28%;
|
||||
z-index: 1000;
|
||||
// display: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 210px;
|
||||
width: fit-content;
|
||||
justify-content: space-between;
|
||||
padding-inline-start: 0px;
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(-10px);
|
||||
transition: opacity 0.3s ease, transform 0.3s ease;
|
||||
}
|
||||
|
||||
li{
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: $white;
|
||||
padding-bottom: 0.8rem;
|
||||
max-width: inherit;
|
||||
padding-left: 1rem;
|
||||
padding-right: 0.5rem;
|
||||
height: fit-content;
|
||||
a {
|
||||
color: $black;
|
||||
}
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
:hover{
|
||||
color: $blue-light;
|
||||
}
|
||||
}
|
||||
|
||||
li:hover ul {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.ul1.sous-liste.ul2{
|
||||
padding-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.region-header-top-rigth{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 40%;
|
||||
align-items: center;
|
||||
|
||||
|
||||
#block-eql-identitedusite{
|
||||
text-transform: uppercase;
|
||||
font-family: "Source Code Pro";
|
||||
color: $blue-dark !important;
|
||||
font-size: 1.2rem;
|
||||
:visited {
|
||||
color: $blue-dark !important;
|
||||
}
|
||||
:link{
|
||||
color: $blue-dark !important;
|
||||
}
|
||||
|
||||
}
|
||||
#block-logoeql{
|
||||
padding-left: 1rem;
|
||||
padding-right: 2.5rem;
|
||||
img{
|
||||
width: 80px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// menu burger à droite
|
||||
|
||||
#block-burger {
|
||||
z-index: 1;
|
||||
background-color: $blue-light;
|
||||
font-size: 0.7rem;
|
||||
color: black;
|
||||
display: block;
|
||||
width: 7rem;
|
||||
height: 100%;
|
||||
margin-top: 0;
|
||||
aspect-ratio: 1;
|
||||
:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
h2{
|
||||
padding-top: 1rem;
|
||||
font-size: 1em;
|
||||
font-weight: light;
|
||||
color: $blue-light;
|
||||
}
|
||||
h2:after{
|
||||
display: block;
|
||||
margin:auto;
|
||||
height: 70px;
|
||||
content:url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="black" stroke-width="2.5"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2.5"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2.5"/></svg>');
|
||||
}
|
||||
|
||||
#block-burger-menu{
|
||||
display: block;
|
||||
margin: 0;
|
||||
align-self: center;
|
||||
text-align: center;
|
||||
// height:7rem;
|
||||
}
|
||||
|
||||
|
||||
// block menu open fond bleu
|
||||
|
||||
.ul1:not(.sous-liste){
|
||||
width: 300%;
|
||||
position: relative;
|
||||
right: 260px;
|
||||
margin: 0;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
z-index: 99;
|
||||
|
||||
}
|
||||
ul {
|
||||
display: none;
|
||||
background-color: $blue-light;
|
||||
line-height: 2rem;
|
||||
list-style: none;
|
||||
|
||||
.ul1 .sous-liste{
|
||||
a{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
a{
|
||||
opacity: 1;
|
||||
color: $white;
|
||||
font-weight: 800;
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
&.opened ul {
|
||||
display: block;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// reseaux sociaux
|
||||
|
||||
@@ -200,74 +231,87 @@
|
||||
|
||||
}
|
||||
|
||||
// menu burger à droite
|
||||
#block-burger {
|
||||
z-index: 1;
|
||||
background-color: $blue-light;
|
||||
font-size: 0.7rem;
|
||||
color: $white;
|
||||
display: block;
|
||||
width: 7rem;
|
||||
height: 100%;
|
||||
margin-top: 0;
|
||||
:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
h2{
|
||||
padding-top: 1rem;
|
||||
}
|
||||
h2:after{
|
||||
display: block;
|
||||
margin:auto;
|
||||
height: 70px;
|
||||
content:url('data:image/svg+xml,<svg width="70" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/></svg>');
|
||||
}
|
||||
|
||||
#block-burger-menu{
|
||||
display: block;
|
||||
margin: 0;
|
||||
align-self: center;
|
||||
text-align: center;
|
||||
// height:7rem;
|
||||
}
|
||||
.region-header-bottom{
|
||||
box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
|
||||
#block-headermenu{
|
||||
align-self: baseline;
|
||||
width: 100%;
|
||||
// margin-left: 3rem;
|
||||
// margin-right: 3rem;
|
||||
background-color: white;
|
||||
border-top: solid $blue-light 1px;
|
||||
}
|
||||
|
||||
ul{
|
||||
font-size: 1rem;
|
||||
font-weight: 900;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
// justify-content: space-between;
|
||||
justify-content: space-evenly;
|
||||
width: 100%;
|
||||
padding-inline-start: 0px;
|
||||
padding: 1rem;
|
||||
margin-top: 0 !important;
|
||||
padding-bottom: 0.5rem;
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
ul{
|
||||
position: absolute;
|
||||
left: -28%;
|
||||
z-index: 1000;
|
||||
// display: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 210px;
|
||||
width: fit-content;
|
||||
justify-content: space-between;
|
||||
padding-inline-start: 0px;
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(-10px);
|
||||
transition: opacity 0.3s ease, transform 0.3s ease;
|
||||
}
|
||||
|
||||
|
||||
// block menu open fond bleu
|
||||
|
||||
.ul1:not(.sous-liste){
|
||||
width: 300%;
|
||||
li{
|
||||
position: relative;
|
||||
right: 260px;
|
||||
margin: 0;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
z-index: 99;
|
||||
|
||||
}
|
||||
ul {
|
||||
display: none;
|
||||
background-color: $blue-light;
|
||||
line-height: 2rem;
|
||||
list-style: none;
|
||||
|
||||
.ul1 .sous-liste{
|
||||
a{
|
||||
opacity: 1;
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: $white;
|
||||
padding-bottom: 0.8rem;
|
||||
max-width: inherit;
|
||||
padding-left: 1rem;
|
||||
padding-right: 0.5rem;
|
||||
height: fit-content;
|
||||
a {
|
||||
color: $black;
|
||||
}
|
||||
a{
|
||||
opacity: 1;
|
||||
color: $white;
|
||||
font-weight: 800;
|
||||
font-size: 1rem;
|
||||
.is-active{
|
||||
color:$blue-light;
|
||||
}
|
||||
:hover{
|
||||
color: $blue-light;
|
||||
}
|
||||
}
|
||||
&.opened ul {
|
||||
display: block;
|
||||
|
||||
li:hover ul {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ul1.sous-liste.ul2{
|
||||
padding-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user