Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633208 Views

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

assets/ cody/atherosai/ui/sidebar-06/assets/
2 Items
  • profile.png
  • astra.svg
  • index_socials.html cody/atherosai/ui/sidebar-06/index_socials.html
    293 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>
    style.css cody/atherosai/ui/sidebar-06/style.css
    119 Views
    0 Comments
    :root {
    --primary-color: #191919;
    --white: #FFFFFF;
    --sidebar-primary: #353E47;
    --sidebar-primary-hover: #353E47;
    --sidebar-background: #070E13;
    --background: #F1F3FF;
    --text-link: #FFFFFF;
    index.html cody/atherosai/ui/sidebar-06/index.html
    344 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-06/script.js
    176 Views
    0 Comments
    const expand_btn = document.querySelector(".expand-btn");

    let activeIndex;

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