Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633176 Views

Latest files of /cody/atherosai/ui/sidebar-03

assets/ cody/atherosai/ui/sidebar-03/assets/
9 Items
  • settings.svg
  • funds.svg
  • profile.jpg
  • logo.svg
  • chevron.svg
  • dashboard.svg
  • performance.svg
  • analytics.svg
  • style.css cody/atherosai/ui/sidebar-03/style.css
    92 Views
    0 Comments

    :root {
    --primary-color: #3841E6;
    --text: #EDF0F7;
    --sidebar-gray: #111926;
    --sidebar-gray-light: #F8F7FD;
    --sidebar-gray-background: #6067EB;
    --success: #00C896;
    index.html cody/atherosai/ui/sidebar-03/index.html
    321 Views
    0 Comments

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Sidebar</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    script.js cody/atherosai/ui/sidebar-03/script.js
    157 Views
    0 Comments

    const expand_btn = document.querySelector(".expand-btn");

    let activeIndex;

    expand_btn.addEventListener("click", () => {
    document.body.classList.toggle("collapsed");
    });