Fancy Side menu with Arrows. can be replaced with other font awesome icons for the arrows
arrow-side-menu
/* SIDE MENU COMPONENT STYLES */
.arrow-side-menu {
background-color: var(--primary-color);
border-radius: 2px;
overflow: hidden;
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.arrow-side-menu .moduletable {
margin: 0;
}
.arrow-side-menu ul.nav.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.arrow-side-menu ul.nav.menu li {
border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.3);
position: relative;
transition: all 0.3s ease;
}
.arrow-side-menu ul.nav.menu li:last-child {
border-bottom: none;
margin-bottom: 0;
}
.arrow-side-menu ul.nav.menu li a {
color: #fff;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
padding: 1.15rem 1.75rem;
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 0.12em;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
background: transparent;
width: 100%;
}
/* Gold Side Indicator */
.arrow-side-menu ul.nav.menu li a::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 0;
background: var(--secondary-color);
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hover & Active States */
.arrow-side-menu ul.nav.menu li:hover a,
.arrow-side-menu ul.nav.menu li.current a,
.arrow-side-menu ul.nav.menu li.active a {
color: #fff;
background: rgba(255, 255, 255, 0.08);
padding-left: 2.25rem;
}
.arrow-side-menu ul.nav.menu li:hover a::before,
.arrow-side-menu ul.nav.menu li.current a::before,
.arrow-side-menu ul.nav.menu li.active a::before {
width: 5px;
}
/* Decorative Chevron on Hover */
.arrow-side-menu ul.nav.menu li a::after {
font-family: "Font Awesome 6 Free";
font-weight: 900;
content: '\f061'; /* fa-arrow-right */
position: absolute;
right: 1.5rem;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
color: var(--secondary-color);
font-size: 1.4rem;
}
.arrow-side-menu ul.nav.menu li:hover a::after {
opacity: 1;
transform: translateX(0);
}