Spider.css is a minimal yet powerful utility-first CSS framework built for modern web developers who want rapid development, flexible utilities, animations, dark mode support, and extensible theming โ all in one file. Use it standalone or combine with your favorite JS framework. CDN ready. Developer-friendly. Stylish by default.

[data-theme="dark"].fade, fade-out, bounce, and more.spy, shop, and other experimental attributes.<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/pjdeveloper896/Spider.css/dist/Spider.css">
https://pjdeveloper896.github.io/Spider.css/dist/Spider.js
<link rel="stylesheet" href="https://pjdeveloper896.github.io/Spider.css/dist/Spider.css">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spider.css Demo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/pjdeveloper896/Spider.css/dist/Spider.css">
</head>
<body class="p-2">
<h1 class="text-center text-primary">Welcome to Spider.css</h1>
<div class="card shadow m-2 p-2">
<p>This is a styled card with padding, margin, and shadow.</p>
<button class="bg-primary text-white rounded p-1">Click Me</button>
</div>
</body>
</html>
.m-1, .m-2, .m-3, .m-4.p-1, .p-2, .p-3, .p-4.text-center, .text-left, .text-right.bg-primary, .bg-secondary, .bg-accent.text-primary, .text-secondary, .text-accent.d-flex, .d-grid.flex-column, .flex-row.grid-cols-2, .grid-cols-3.justify-center, .justify-between.align-center, .align-items-startEnable dark mode globally:
<html data-theme="dark">
Or dynamically toggle via JavaScript:
document.documentElement.setAttribute('data-theme', 'dark');
.fade โ Fade in.fade-out โ Fade out.bounce โ Bouncy entranceUse like:
<div class="fade">I fade in!</div>
spyInteractive element observation via custom attribute (upcoming JS support).
shopAuto-bind styled commerce components (cart, buy button, etc).
Spider.css/
โโโ dist/
โ โโโ Spider.css # Compiled CSS file
โโโ src/
โ โโโ framework.scss # Source SCSS file
โโโ docs/
โ โโโ index.html # Documentation and demo
โโโ README.md # This file
Made with โค๏ธ by PJ Developer
```