123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- .layout-container{
- position: relative;
- }
- header{
- position: sticky;
- }
- #header-top {
- height: 7rem;
- background-color: $white;
- box-shadow: 1px 0px 8px $black;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- color: $black;
- .region-header-top-left {
- display:flex;
- flex-direction: row;
- padding: 1rem;
- align-items: center;
- color: $black;
- font-weight: 800;
- ul{
- list-style: none;
- display: flex;
- flex-direction: row;
- li {
- padding-right: 1rem;
- a {
- color: $black;
- .is-active {
- color: $blue-light;
- }
- }
- }
- .ul2{
- flex-direction: column;
- }
- }
- :hover{
- color: $blue-light;
- }
- // :visited {
- // color: $blue-light;
- // }
- }
- li ul {
- display: flex;
- flex-direction: column;
- }
- // .region-header-top-rigth {
- // width: 7rem;
- // height: 7rem;
- // }
- #block-burger {
- z-index: 1;
- background-color: $blue-light;
- font-size: 0.5rem;
- color: $white;
- display: block;
- width: 7rem;
- height: 7rem;
- margin-top: 0;
- :hover{
- cursor: pointer;
- }
- h2:after{
- display: block;
- height: 60px;
- // font-family: 'Font Awesome';
- // content: "\f0c9";
- // font-weight: 100;
- // font-size: 5rem;
- content:"";
- background-image: url('~/web/themes/custom/eql/images/pictos/menu.png');
- height: 6rem;
- }
- #block-burger-menu{
- display: block;
- margin: 0;
- align-self: center;
- text-align: center;
- height:7rem;
- }
- // ul {display: none;}
- .menuOpen:first-of-type{
- width: 500%;
- position: relative;
- right: 0;
- }
- ul {
- display: none;
- // width: 100vw;
- // position: relative;
- // bottom:8%;;
- // left: calc(-30vw + 50%);
- // height: fit-content;
- // padding-bottom: 1rem;
- // padding-top: 1rem;
- background-color: $blue-light;
- line-height: 2rem;
- list-style: none;
-
- .ul1 .sous-liste{
- // left: calc(-50vw + 50%);
- // padding-top: 0;
- a{
- opacity: 1;
- }
- }
- a{
- color: $white;
- font-weight: 800;
- font-size: 1rem;
- }
-
- }
- &.opened ul {
- display: block;
- }
- }
- }
|