2016-02-02 13:32:02 +00:00
|
|
|
@import 'constants';
|
|
|
|
|
|
|
|
#WRAPPER > #MENU-SIDE{
|
|
|
|
|
|
|
|
& > span[data-link]{
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
|
|
|
height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
|
|
|
|
|
|
|
// padding: 1em;
|
|
|
|
margin: 2em .7em;
|
|
|
|
padding: .55em;
|
|
|
|
|
|
|
|
border: .01em solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
|
2016-02-03 11:32:53 +00:00
|
|
|
// Decalage des elemts du menu
|
|
|
|
&.mt{ // Margin Top
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
|
|
|
&.mb{ // Margin Bottom
|
|
|
|
margin-bottom: 3em;
|
|
|
|
}
|
|
|
|
|
2016-02-02 13:32:02 +00:00
|
|
|
color: #a2a2a2;
|
|
|
|
line-height: calc( 4em - 2*.7em - 2*.55em - 2*.01em );
|
|
|
|
|
|
|
|
transition: color .3s, border .3s;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
svg, svg *{
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
|
|
|
|
stroke: none !important;
|
|
|
|
fill: #000 !important;
|
2016-02-03 11:32:53 +00:00
|
|
|
fill: #777 !important;
|
2016-02-02 13:32:02 +00:00
|
|
|
|
|
|
|
transition: fill .3s;
|
2016-02-14 21:50:07 +00:00
|
|
|
|
|
|
|
pointer-events: none;
|
2016-02-02 13:32:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&[data-desc]:after{
|
|
|
|
content: attr(data-desc);
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: calc( .7em - 2*.3em );
|
|
|
|
left: calc( 4.6em - 2*.3em );
|
|
|
|
padding: .3em;
|
|
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
|
|
background-color: #2a2a2a;
|
|
|
|
|
|
|
|
color: #e2e2e2;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
transition: transform .1s;
|
|
|
|
|
|
|
|
transform-origin: 0 0;
|
|
|
|
transform: scaleX(0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.active{
|
|
|
|
color: $theme-color;
|
|
|
|
border-color: #e6e6e6;
|
|
|
|
box-shadow: inset 0 0 .5em #eee;
|
|
|
|
|
|
|
|
&:hover:after{
|
|
|
|
transform: scaleX(1);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg, svg *{
|
2016-02-03 11:32:53 +00:00
|
|
|
fill: #000 !important;
|
2016-02-02 13:32:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|