49 lines
689 B
CSS
49 lines
689 B
CSS
|
/* Menu Item Wrapper */
|
||
|
#MENU .menu-item-wrapper{
|
||
|
display: block;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 4em;
|
||
|
|
||
|
flex: 0 0 1;
|
||
|
|
||
|
font-size: .8em;
|
||
|
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* Menu Standard Item */
|
||
|
#MENU .menu-item-wrapper .menu-item{
|
||
|
display: block;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: calc( 100% - 3em );
|
||
|
height: calc( 100% - 1.5em );
|
||
|
|
||
|
background-color: #fff;
|
||
|
|
||
|
padding-top: 1.5em;
|
||
|
padding-left: 3em;
|
||
|
|
||
|
color: #888;
|
||
|
letter-spacing: 2px;
|
||
|
|
||
|
overflow: hidden;
|
||
|
|
||
|
cursor: pointer;
|
||
|
|
||
|
transition: background-color .2s ease-in-out,
|
||
|
color .2s ease-in-out;
|
||
|
}
|
||
|
|
||
|
#MENU .menu-item:hover,
|
||
|
#MENU .menu-item.active{
|
||
|
color: #444;
|
||
|
|
||
|
background-color: #eef2f5;
|
||
|
}
|
||
|
|
||
|
|
||
|
/****************************/
|