SMMP/css/container.scss

41 lines
672 B
SCSS
Raw Normal View History

#WRAPPER > #CONTAINER{
/**************************/
/* Menu interne (submenu) */
/**************************/
& > .sub-menu-side{
display: block;
position: relative;
// Les liens du menu
& > span[data-sublink]{
display: block;
position: relative;
padding: .3em 1.5em;
border-radius: 3px;
background: url('../src/?static/sub-menu-side.svg') left .25em center no-repeat;
background-size: 1.1em;
color: #5b5e63;
text-shadow: 1px 1px white;
white-space: nowrap;
transition: all .2s;
cursor: pointer;
&:hover,
&.active{
background-color: #d8deea;
box-shadow: inset 0 0 4px #c8ced9;
}
}
}
}