71 lines
1.2 KiB
SCSS
Raw Permalink Normal View History

2019-12-20 11:30:26 +01:00
// header{
// z-index: 999;
// position: relative;
// @include inlineflex();
// justify-content: center;
// width: 100%;
// border-bottom: 1px solid $light-blue;
// height: 105px;
// nav{
// @include inlineflex();
// justify-content: space-around;
// height: 100px;
// width: 75%;
// flex-wrap: nowrap;
// .logo{
// display: flex;
// a{
// display: block;
// margin: auto;
// }
// }
// .reso{
// @include inlineflex;
// flex-wrap: nowrap;
// a{
// display: block;
// width: 35px;
// margin: auto 5px;
// }
// }
// }
// }
//
//
2019-05-14 19:59:47 +02:00
header{
2019-05-01 19:59:32 +02:00
width: 100%;
2019-12-20 11:30:26 +01:00
display: flex;
2019-06-03 15:22:10 +02:00
height: 105px;
2019-12-20 11:30:26 +01:00
z-index: 999;
border-bottom: 1px solid $light-blue;
& > nav{
margin: auto;
min-width: 1100px;
2019-05-01 19:59:32 +02:00
width: 70%;
2019-12-20 11:30:26 +01:00
display: inline-flex;
justify-content: space-between;
.navTrigger{
display: none;
}
2019-05-01 19:59:32 +02:00
.logo{
2019-12-20 11:30:26 +01:00
width: 150px;
}
.dropmenu{
width: 70%;
& > ul{
height: 100%;
2019-05-01 19:59:32 +02:00
}
2019-04-05 00:19:26 +02:00
}
.reso{
2019-12-20 11:30:26 +01:00
display: inline-flex;
width: auto;
2019-05-01 19:59:32 +02:00
a{
display: block;
width: 35px;
margin: auto 5px;
}
2019-04-05 00:19:26 +02:00
}
2019-04-02 19:54:29 +02:00
}
}