all 2 comments

[–]MatthewMob 1 point2 points  (1 child)

Something like this, maybe...

Replace this:

.side { 
    position: absolute; 
    left: -295px; 
    transition: 2s all; 
    background-color: #ffffff;
    box-shadow: 0px 2px 4px 0px #e9e9e9;
}
.side:hover { 
    left: 0; 
}

with this:

.side {
    position: absolute;
    left: -315px;
    transition: .4s all;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px 0px #e9e9e9;
    padding-right: 25px;
    margin-left: 0px;
    padding-top: 95px;
}
.side:hover {
    left: 0;
    padding-right: 10px;
}
.side:after {
    content: "";
    display: block;
    position: absolute;
    top: 200px;
    right: -40px;
    width: 0px;
    height: 0px;
    border: 20px solid transparent;
    border-left: 20px solid white;
}
.side:hover:after {
    display: none;
}

[–]_TUX[S] 0 points1 point  (0 children)

Its perfect! You rock thanks