drupal-erable/web/themes/erabletheme/scss/partials/_header.scss

276 lines
9.8 KiB
SCSS

body.toolbar-tray-open header {
left: 15rem !important;
width: calc(100% - 15rem) !important;
}
body.toolbar-fixed header {
top: 2.4em !important;
}
.layout-container {
width: 100%;
overflow: hidden;
header {
width: 100%;
background: white;
position: fixed;
top: 0;
left: 0;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
z-index: 99;
div {
max-width: 100%;
max-height: 10vh;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
#block-erabletheme-logorepublique {
width: 15%;
a {
display: flex;
align-items: center;
img {
padding-left: $x_margin;
height: auto;
width: 100%;
@media (min-width: $breakpoint_desktop) {
padding-right: 1.5vw;
}
}
}
@media (min-width: $breakpoint_tablet) {
padding-right: 2rem;
}
@media (min-width: $breakpoint_desktop) {
width: 10%;
padding-right: 1%;
}
}
#block-erabletheme-logoerable {
max-height: 100%;
width: 20%;
> div {
width: auto;
a {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
img {
height: 100%;
width: auto;
padding-top: 3px;
padding-bottom: 3px;
}
}
}
@media (min-width: $breakpoint_desktop) {
width: 10%;
padding-left: 3%;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
}
#block-erabletheme-navigationprincipale {
display: none;
width: 60%;
ul {
width: 100%;
display: flex;
height: 100%;
align-items: center;
justify-content: space-around;
padding: 0 2vw;
li {
font-family: 'Marianne', sans-serif;
font-size: $m_font_size;
a {
font-weight: 800;
padding: 4px 6px;
color: black;
background-color: rgba(255, 255, 255, 0);
transition: background-color 0.3s ease;
}
a:hover {
background-color: $fluo_green;
}
a.is-active {
background-color: $fluo_green;
}
}
}
@media (min-width: $breakpoint_desktop) {
display: block;
}
}
#block-erabletheme-socialmedialinks {
width: 7%;
margin: 0 calc((20% - (7% + 7vh)) / 2);
display: none;
ul {
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
li a {
span {
font-weight: lighter;
font-size: 1.4rem;
width: 2.2rem;
height: 2.2rem;
padding: 0.4rem;
border-radius: 1.1rem;
color: white;
background-color: $teal;
}
svg.ext {
display: none;
}
}
}
@media (min-width: $breakpoint_desktop) {
display: block;
}
}
#block-erabletheme-header {
#hamburger {
cursor: pointer;
width: 10vh;
height: 100%;
background-color: $fluo_green;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding: 0.5rem 0;
h2 {
font-size: $sm_font_size;
font-family: 'Marianne', sans-serif;
font-weight: 800;
text-align: center;
}
.burger-icon {
width: 2rem;
height: 1.5rem;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-bottom: 0.5rem;
div {
border-bottom: solid 1px black;
width: 100%;
background-color: black;
opacity: 1;
transition: opacity 0.2s ease-out, transform 0.4s ease-out;
transform: none;
}
}
.burger-icon.open {
div:first-of-type {
transform: translate(0rem, 0.5rem) rotate(-45deg);
}
div:nth-of-type(2) {
opacity: 0;
}
div:last-of-type {
transform: translate(0rem, -0.5rem) rotate(45deg);
}
}
}
ul:not(.social-media-links--platforms) {
display: none;
height: auto;
max-height: 0vh;
transition: max-height 0.9s ease, padding 0.5s ease-out;
position: fixed;
background-color: $dark_green;
top: 10vh;
left: 0;
width: 100vw;
z-index: 0;
padding: 0;
align-items: center;
flex-direction: column;
> li {
width: 100%;
display: flex;
justify-content: center;
padding: 6px 0;
opacity: 0;
transition: opacity 0.3s ease;
max-width: 60vw;
> a {
text-align: center;
line-height: 1.2;
color: white;
font-family: 'Marianne', sans-serif;
font-weight: 800;
padding: 4px 6px;
background-color: rgba(255, 255, 255, 0);
transition: background-color 0.3s ease, color 0.3s ease;
}
> a:hover {
background-color: white;
color: $dark_green;
}
> a.is-active {
background-color: white;
color: $dark_green;
}
@media (min-width: $breakpoint_tablet) {
max-width: 30vw;
}
#socials-in-menu-wrapper {
display: flex;
width: auto;
li {
width: auto;
padding: 0 1rem;
margin-top: 1rem;
a {
span {
color: white;
}
svg {
display: none;
}
}
}
}
}
> li.visible {
opacity: 1;
}
> li:nth-of-type(1),
> li:nth-of-type(2),
> li:nth-of-type(6) {
border-bottom: solid 1px white;
padding: 12px 0;
}
@media (min-width: $breakpoint_desktop) {
width: 25vw;
right: 0;
left: auto;
li {
width: calc(100% - $x_margin * 2);
a {
width: 100%;
text-align: left;
}
}
}
}
ul.active {
padding: 30px 0;
max-height: 100vh;
}
}
}
}
}