61 lines
1.3 KiB
SCSS
Raw Normal View History

2019-04-03 15:29:46 +02:00
#header{
2019-04-05 00:19:26 +02:00
z-index: 999;
position: relative;
2019-05-01 19:59:32 +02:00
@include inlineflex();
justify-content: center;
width: 100%;
2019-04-03 15:29:46 +02:00
nav{
@include inlineflex();
2019-04-08 18:00:38 +02:00
justify-content: space-around;
2019-04-03 15:29:46 +02:00
height: 100px;
2019-05-01 19:59:32 +02:00
width: 70%;
.logo{
display: flex;
a{
display: block;
margin: auto;
}
2019-04-05 00:19:26 +02:00
}
2019-05-01 19:59:32 +02:00
&.dropmenu{
a{
padding: 10px;
}
& > ul{
@include inlineflex();
&> li{
height: 3em; /* hauteur du parent */
line-height: 2.5em; /* hauteur de ligne (identique) */
white-space: nowrap; /* interdiction de passer à la ligne */
margin: auto 20px;
border-top: 1px solid $light-blue;
border-bottom: 3px solid $green;
2019-04-05 00:19:26 +02:00
& > ul{
2019-05-01 19:59:32 +02:00
display: none;
border-bottom: 3px solid $green;
}
&:hover{
& > ul{
2019-04-05 00:19:26 +02:00
display: block;
2019-05-01 19:59:32 +02:00
a{
display: block;
height: 50px;
background: white;
padding: 10px;
}
2019-04-05 00:19:26 +02:00
}
}
}
}
}
.reso{
@include inlineflex;
2019-04-08 18:00:38 +02:00
flex-wrap: nowrap;
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
}
}