pm-controls
Version:
ProModel Controls
50 lines (40 loc) • 1.29 kB
CSS
.button-sidenav:hover {
background-color: #dfdfdf;
}
.button-sidenav {
cursor: pointer;
font-size: 14px;
/*box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 2px 1px -1px rgba(0,0,0,0.12);*/
border: 0;
display: flex;
align-items: center;
margin: 0px 0px 0px 1px;
justify-content: center;
background-color: transparent;
/* border-left: 1px solid #c0c0c0;
border-right: 1px solid #c0c0c0; */
-webkit-transition: all 0.45s cubic-bezier(0.35, 0, 0.25, 1);
transition: all 0.15s cubic-bezier(0.35, 0, 0.25, 1);
color: #303030;
height: 24px;
width: 24px;
padding: 3px;
}
.sidenav-content {
height: 100%;
/* width: 100%; */
position: absolute;
top: 0;
left: 0;
background-color: white;
-webkit-transform: translateX(0);
transform: translateX(0);
visibility: visible;
-webkit-box-shadow: 0 0 16px rgba(0,0,0,.28);
box-shadow: 0 0 16px rgba(0,0,0,.28);
-webkit-transition: transform .25s cubic-bezier(0.4,0.0,0.2,1),visibility 0s linear 0s;
transition: transform .25s cubic-bezier(0.4,0.0,0.2,1),visibility 0s linear 0s;
}
.sidenav-header {
/* background-color: blue; */
}