Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632991 Views

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

assets/ cody/atherosai/ui/sidebar-01/assets/
6 Items
  • portfolio.svg
  • logo.svg
  • chevron.svg
  • dashboard.svg
  • reports.svg
  • analytics.svg
  • style.css cody/atherosai/ui/sidebar-01/style.css
    102 Views
    0 Comments

    @import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

    :root {
    --primary-color: #625BFE;
    --primary-color-dark: #7771F6;
    --button-color: #5433FF;
    --button-color-shadow: #5433FF30;
    index.html cody/atherosai/ui/sidebar-01/index.html
    338 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-01/script.js
    184 Views
    0 Comments

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

    let activeIndex;

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