Uncategorized
Showing all 4 results
Showing all 4 results
/* Sidebar */
.custom-sidebar {
position: fixed;
top: 0;
left: -280px;
width: 260px;
height: 100%;
background: #ffffff;
box-shadow: 5px 0 30px rgba(0,0,0,0.1);
padding: 40px 25px;
transition: 0.4s ease;
z-index: 9999;
font-family: 'Poppins', sans-serif;
}
.custom-sidebar.active {
left: 0;
}
.custom-sidebar h3 {
margin-bottom: 35px;
font-size: 22px;
font-weight: 600;
color: #ff4da6;
}
/* Menu List */
.custom-sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}
.custom-sidebar ul li {
margin-bottom: 18px;
}
.custom-sidebar ul li a {
text-decoration: none;
font-size: 16px;
color: #000;
font-weight: 500;
transition: 0.3s ease;
}
.custom-sidebar ul li a:hover {
color: #ff4da6;
}
/* Close Button */
.close-sidebar {
position: absolute;
top: 15px;
right: 20px;
font-size: 22px;
cursor: pointer;
color: #000;
}
/* Toggle Button */
.sidebar-toggle {
font-size: 24px;
cursor: pointer;
color: #000;
}
function openSidebar() { document.getElementById("customSidebar").classList.add("active"); document.querySelector(".custom-sidebar-overlay").style.display = "block"; }
function closeSidebar() { document.getElementById("customSidebar").classList.remove("active"); document.querySelector(".custom-sidebar-overlay").style.display = "none"; }