santycss 1.8.0 โ 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +123 -5
- package/dist/santy-components.css +1856 -0
- package/dist/santy-core.css +1 -1
- package/dist/santy.css +1857 -1
- package/dist/santy.min.css +1 -1
- package/package.json +68 -68
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/santycss)
|
|
4
4
|
[](https://www.npmjs.com/package/santycss)
|
|
5
5
|
[](https://github.com/ChintuSanty/santyCSS/blob/main/LICENSE)
|
|
6
|
-
[](https://www.npmjs.com/package/santycss)
|
|
7
7
|
|
|
8
8
|
**Plain-English utility-first CSS framework.**
|
|
9
9
|
Class names read like sentences. No build step. No configuration. Just link and use.
|
|
@@ -16,7 +16,111 @@ Class names read like sentences. No build step. No configuration. Just link and
|
|
|
16
16
|
</div>
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
> ๐ **[santycss.santy.in](https://santycss.santy.in)** ยท ๐ **[Class Reference](https://santycss.santy.in/classes.html)** ยท ๐ฌ **[Animations](https://santycss.santy.in/animations.html)** ยท ๐ฆ **[npm Docs](https://santycss.santy.in/docs.html)**
|
|
19
|
+
> ๐ **[santycss.santy.in](https://santycss.santy.in)** ยท ๐ **[Class Reference](https://santycss.santy.in/classes.html)** ยท ๐ **[Webflow](https://santycss.santy.in/webflow.html)** ยท ๐ฌ **[Animations](https://santycss.santy.in/animations.html)** ยท ๐ฆ **[npm Docs](https://santycss.santy.in/docs.html)**
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## What's New in v2.0
|
|
24
|
+
|
|
25
|
+
### ๐ฆ Creature Animations โ Premium Free
|
|
26
|
+
|
|
27
|
+
10 hand-crafted creature animations included free in v2.0. No extra import, no paywall โ just add the class.
|
|
28
|
+
|
|
29
|
+
| Class | Creature | Description |
|
|
30
|
+
|---|---|---|
|
|
31
|
+
| `animate-bat-fly` | ๐ฆ Bat | Flies across screen with arcing path |
|
|
32
|
+
| `animate-bat-wings` | ๐ฆ Bat wings | Wing flap loop (combine with `animate-bat-fly`) |
|
|
33
|
+
| `animate-butterfly` | ๐ฆ Butterfly | Wing flap using scaleX |
|
|
34
|
+
| `animate-butterfly-drift` | ๐ฆ Butterfly drift | Drifts through the air while flapping |
|
|
35
|
+
| `animate-firefly` | ๐ Firefly | Erratic glowing float |
|
|
36
|
+
| `animate-firefly-glow` | โจ Firefly glow | Pulsing yellow glow effect |
|
|
37
|
+
| `animate-spider-drop` | ๐ท๏ธ Spider | Descends on thread and ascends |
|
|
38
|
+
| `animate-spider-swing` | ๐ท๏ธ Spider swing | Pendulum swing on thread |
|
|
39
|
+
| `animate-fish-swim` | ๐ Fish | Swims with tail-wave body motion |
|
|
40
|
+
| `animate-jellyfish` | ๐ Jellyfish | Pulsing bell contraction + float |
|
|
41
|
+
| `animate-jellyfish-tendrils` | ๐ Tendrils | Trailing tendril sway |
|
|
42
|
+
| `animate-bird-flock` | ๐ฆ Bird | Soaring arc with rotation |
|
|
43
|
+
| `animate-bird-flock-2` / `animate-bird-flock-3` | ๐ฆ๐ฆ Flock | Staggered offsets for formation effect |
|
|
44
|
+
| `animate-bee-hover` | ๐ Bee | Hovering with natural drift |
|
|
45
|
+
| `animate-bee-buzz` | ๐ Buzz | Rapid wing-buzz shake |
|
|
46
|
+
| `animate-snake-slither` | ๐ Snake | Sinusoidal slithering path |
|
|
47
|
+
| `animate-dragon-fire` | ๐ฅ Dragon fire | Fire burst expanding and fading |
|
|
48
|
+
| `animate-fire-flicker` | ๐ฅ Flicker | Rapid flame flicker |
|
|
49
|
+
|
|
50
|
+
```html
|
|
51
|
+
<!-- Bat flying across -->
|
|
52
|
+
<span class="animate-bat-fly animate-bat-wings">๐ฆ</span>
|
|
53
|
+
|
|
54
|
+
<!-- Butterfly flapping and drifting -->
|
|
55
|
+
<span class="animate-butterfly animate-butterfly-drift">๐ฆ</span>
|
|
56
|
+
|
|
57
|
+
<!-- Firefly with glow -->
|
|
58
|
+
<span class="animate-firefly animate-firefly-glow">โจ</span>
|
|
59
|
+
|
|
60
|
+
<!-- Bird flock formation (3 birds) -->
|
|
61
|
+
<span class="animate-bird-flock">๐ฆ</span>
|
|
62
|
+
<span class="animate-bird-flock-2">๐ฆ</span>
|
|
63
|
+
<span class="animate-bird-flock-3">๐ฆ</span>
|
|
64
|
+
|
|
65
|
+
<!-- Dragon fire breath -->
|
|
66
|
+
<span class="animate-dragon-fire animate-fire-flicker">๐ฅ</span>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
> ๐ฌ **[See all creature animations live โ](https://santycss.santy.in/animations.html#creature-animations)**
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## What's New in v1.9
|
|
74
|
+
|
|
75
|
+
### ๐ Scroll & Scrollbar Utilities
|
|
76
|
+
|
|
77
|
+
| Class | Description |
|
|
78
|
+
|---|---|
|
|
79
|
+
| `scroll-smooth` | `scroll-behavior: smooth` |
|
|
80
|
+
| `scroll-auto` | `scroll-behavior: auto` |
|
|
81
|
+
| `scrollbar-thin` | Narrow scrollbar (webkit + standard) |
|
|
82
|
+
| `scrollbar-dark` | Dark-themed scrollbar |
|
|
83
|
+
| `scrollbar-hidden` | Hide scrollbar, keep scroll functionality |
|
|
84
|
+
|
|
85
|
+
### ๐ช Glass Morphism
|
|
86
|
+
|
|
87
|
+
| Class | Description |
|
|
88
|
+
|---|---|
|
|
89
|
+
| `glass` | Frosted glass effect (blur + semi-transparent white) |
|
|
90
|
+
| `glass-dark` | Dark frosted glass |
|
|
91
|
+
| `glass-light` | Light frosted glass |
|
|
92
|
+
|
|
93
|
+
### ๐ Radial Gradients
|
|
94
|
+
|
|
95
|
+
```html
|
|
96
|
+
<div class="gradient-radial-blue-purple">...</div>
|
|
97
|
+
<div class="gradient-radial-pink-orange">...</div>
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
All `gradient-radial-*` utilities use CSS `radial-gradient()` matching the existing linear gradient palette.
|
|
101
|
+
|
|
102
|
+
### ๐ฌ New Animation Utilities
|
|
103
|
+
|
|
104
|
+
| Class | Description |
|
|
105
|
+
|---|---|
|
|
106
|
+
| `animate-spin-slow` | Slow clockwise rotation |
|
|
107
|
+
| `animate-spin-fast` | Fast clockwise rotation |
|
|
108
|
+
| `animate-spin-cw` | Explicit clockwise spin |
|
|
109
|
+
| `animate-spin-ccw` | Counter-clockwise spin |
|
|
110
|
+
| `animate-spin-xslow` | Very slow rotation |
|
|
111
|
+
| `animate-pulse-dot` | Pulsing dot indicator |
|
|
112
|
+
| `skill-bar-animated` | Animated skill/progress bar fill |
|
|
113
|
+
|
|
114
|
+
```html
|
|
115
|
+
<!-- Pulsing status indicator -->
|
|
116
|
+
<span class="animate-pulse-dot background-green-500"></span>
|
|
117
|
+
|
|
118
|
+
<!-- Animated skill bar -->
|
|
119
|
+
<div class="skill-bar-animated" style="--skill-width: 80%"></div>
|
|
120
|
+
|
|
121
|
+
<!-- Counter-clockwise spinner -->
|
|
122
|
+
<div class="animate-spin-ccw">โบ</div>
|
|
123
|
+
```
|
|
20
124
|
|
|
21
125
|
---
|
|
22
126
|
|
|
@@ -26,7 +130,11 @@ Class names read like sentences. No build step. No configuration. Just link and
|
|
|
26
130
|
|
|
27
131
|
Inspect any Figma layer and get the exact SantyCSS classes in one click.
|
|
28
132
|
|
|
29
|
-
**
|
|
133
|
+
**Download / Install:**
|
|
134
|
+
|
|
135
|
+
> ๐ **[Download from santycss.santy.in/docs.html](https://santycss.santy.in/docs.html#figma-plugin)** โ full setup guide and one-click download
|
|
136
|
+
|
|
137
|
+
**Local development install:**
|
|
30
138
|
1. Clone this repo โ the plugin lives in `figma-plugin-santycss/`
|
|
31
139
|
2. Open **Figma Desktop** โ Plugins โ Development โ **Import plugin from manifest**
|
|
32
140
|
3. Select `figma-plugin-santycss/manifest.json`
|
|
@@ -111,9 +219,9 @@ Inspect any Figma layer and get the exact SantyCSS classes in one click.
|
|
|
111
219
|
| `.date-picker` / `.date-picker-grid` / `.date-picker-day` | Full calendar date picker |
|
|
112
220
|
| `.date-picker-day.today` / `.selected` / `.in-range` | Day state modifiers |
|
|
113
221
|
|
|
114
|
-
### ๐จ Figma Plugin
|
|
222
|
+
### ๐จ Figma Plugin
|
|
115
223
|
|
|
116
|
-
|
|
224
|
+
The **SantyCSS Figma Plugin** is live โ inspect Figma designs and get the exact SantyCSS classes that match. See [What's New in v1.8](#-santycss-inspector--figma-plugin) above for full details and the download link.
|
|
117
225
|
|
|
118
226
|
---
|
|
119
227
|
|
|
@@ -309,6 +417,14 @@ The **built-in AI Generator** converts plain English โ SantyCSS classes in the
|
|
|
309
417
|
|
|
310
418
|
---
|
|
311
419
|
|
|
420
|
+
## Webflow
|
|
421
|
+
|
|
422
|
+
Use SantyCSS on **[Webflow](https://webflow.com/)** without a build step: add the CDN `<link>` in **Project settings โ Custom Code โ Head**, then enter utility classes in the **Style โ Selector** field on any element.
|
|
423
|
+
|
|
424
|
+
- **[Webflow guide + copy-paste snippets + sidebar class index](https://santycss.santy.in/webflow.html)** โ head/footer code, optional split bundles, scroll-animation helper, design tokens.
|
|
425
|
+
|
|
426
|
+
---
|
|
427
|
+
|
|
312
428
|
## Installation
|
|
313
429
|
|
|
314
430
|
```bash
|
|
@@ -532,10 +648,12 @@ The file `santycss.context.md` (in the GitHub repo) is a ready-made system promp
|
|
|
532
648
|
|
|
533
649
|
- ๐ Website: [santycss.santy.in](https://santycss.santy.in)
|
|
534
650
|
- ๐ Class Reference: [santycss.santy.in/classes.html](https://santycss.santy.in/classes.html)
|
|
651
|
+
- ๐ Webflow: [santycss.santy.in/webflow.html](https://santycss.santy.in/webflow.html)
|
|
535
652
|
- ๐ฌ Animations: [santycss.santy.in/animations.html](https://santycss.santy.in/animations.html)
|
|
536
653
|
- ๐ฎ Live Demo: [santycss.santy.in/demo.html](https://santycss.santy.in/demo.html)
|
|
537
654
|
- ๐ฆ npm Docs: [santycss.santy.in/docs.html](https://santycss.santy.in/docs.html)
|
|
538
655
|
- ๐ Issues: [github.com/ChintuSanty/santyCSS/issues](https://github.com/ChintuSanty/santyCSS/issues)
|
|
656
|
+
- ๐ฌ Discussions: [GitHub Discussions](https://github.com/orgs/community/discussions/190269)
|
|
539
657
|
|
|
540
658
|
---
|
|
541
659
|
|