This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ========================================================= | |
| Tabler Icons (Filled) — Local Copy | |
| MIT License — https://tabler.io/icons | |
| ========================================================= */ | |
| .ti { | |
| display: inline-block; | |
| width: 1.2em; | |
| height: 1.2em; | |
| stroke-width: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ========================================================= | |
| BossFurn Sneat Theme — Local Hosted | |
| Option B: Mini Sidebar + Hover Flyout | |
| Light + Dark Mode (manual toggle) | |
| Tabler Icons (Filled) | |
| ========================================================= */ | |
| :root { | |
| --primary: #e07820; | |
| --primary-dark: #c05f08; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const sidebar = document.getElementById("sidebar"); | |
| const main = document.getElementById("main"); | |
| const overlay = document.getElementById("overlay"); | |
| const menuToggle = document.getElementById("menuToggle"); | |
| const themeToggle = document.getElementById("themeToggle"); | |
| menuToggle.addEventListener("click", () => { | |
| if (window.innerWidth > 900) { | |
| sidebar.classList.toggle("collapsed"); | |
| main.classList.toggle("shifted"); |