flowcss-style 1.0.0
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/LICENSE +17 -0
- package/README.md +51 -0
- package/dist/flow.css +1021 -0
- package/dist/flow.js +264 -0
- package/package.json +31 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 FlowCSS Authors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# FlowCSS
|
|
2
|
+
|
|
3
|
+
> A modern CSS framework with 40+ animations, glassmorphism, 3D transforms, pre-built components, and dark mode — zero dependencies, zero build step.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/flowcss)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
## Why FlowCSS?
|
|
9
|
+
|
|
10
|
+
| Feature | FlowCSS | Tailwind |
|
|
11
|
+
|---------|---------|---------|
|
|
12
|
+
| Built-in animations | ✅ 40+ | ❌ 4 |
|
|
13
|
+
| Scroll-triggered reveals | ✅ | ❌ |
|
|
14
|
+
| Glassmorphism utilities | ✅ | ❌ |
|
|
15
|
+
| 3D / perspective utilities | ✅ | ❌ |
|
|
16
|
+
| Pre-built components | ✅ | ❌ |
|
|
17
|
+
| Zero build step | ✅ | ❌ |
|
|
18
|
+
| Gradient text utilities | ✅ | Plugin needed |
|
|
19
|
+
| Auto-responsive grid | ✅ | ❌ |
|
|
20
|
+
| Typewriter effect | ✅ | ❌ |
|
|
21
|
+
| Dark mode (zero classes) | ✅ | Partial |
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install flowcss
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
```html
|
|
30
|
+
<!-- Via CDN -->
|
|
31
|
+
<link rel="stylesheet" href="https://unpkg.com/flowcss/dist/flow.css">
|
|
32
|
+
<script src="https://unpkg.com/flowcss/dist/flow.js" defer></script>
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Quick Start
|
|
36
|
+
|
|
37
|
+
```html
|
|
38
|
+
<div class="flow-card flow-card-3d flow-animate-slide-up">
|
|
39
|
+
<h1 class="flow-text-gradient">Hello FlowCSS</h1>
|
|
40
|
+
<p class="flow-text-muted">40+ animations. Just add a class.</p>
|
|
41
|
+
<button class="flow-btn flow-btn--gradient flow-btn--ripple">Get Started</button>
|
|
42
|
+
</div>
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Docs
|
|
46
|
+
|
|
47
|
+
Full documentation: [flowcss.dev/docs](https://flowcss.dev/docs)
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT © 2025
|