bulma-tailwind 0.1.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.
Files changed (47) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +67 -0
  3. package/dist/bulma-tailwind.css +3352 -0
  4. package/package.json +32 -0
  5. package/src/bulma-tailwind.css +45 -0
  6. package/src/components/breadcrumb.css +48 -0
  7. package/src/components/card.css +17 -0
  8. package/src/components/dropdown.css +31 -0
  9. package/src/components/menu.css +20 -0
  10. package/src/components/message.css +76 -0
  11. package/src/components/modal.css +26 -0
  12. package/src/components/navbar.css +20 -0
  13. package/src/components/pagination.css +40 -0
  14. package/src/components/panel.css +31 -0
  15. package/src/components/tabs.css +38 -0
  16. package/src/elements/box.css +6 -0
  17. package/src/elements/button.css +169 -0
  18. package/src/elements/content.css +61 -0
  19. package/src/elements/delete.css +39 -0
  20. package/src/elements/icon.css +18 -0
  21. package/src/elements/image.css +46 -0
  22. package/src/elements/notification.css +98 -0
  23. package/src/elements/progress.css +59 -0
  24. package/src/elements/table.css +129 -0
  25. package/src/elements/tag.css +120 -0
  26. package/src/elements/title.css +21 -0
  27. package/src/example/components.html +341 -0
  28. package/src/example/dist/bulma-tailwind.css +3352 -0
  29. package/src/example/elements.html +605 -0
  30. package/src/example/form.html +262 -0
  31. package/src/example/index.html +146 -0
  32. package/src/example/layout.html +193 -0
  33. package/src/example/misc.html +164 -0
  34. package/src/footer.css +5 -0
  35. package/src/form/checkbox-radio.css +8 -0
  36. package/src/form/file.css +44 -0
  37. package/src/form/general.css +129 -0
  38. package/src/form/input.css +9 -0
  39. package/src/form/select.css +39 -0
  40. package/src/form/textarea.css +315 -0
  41. package/src/layout/columns.css +25 -0
  42. package/src/layout/container.css +12 -0
  43. package/src/layout/hero.css +8 -0
  44. package/src/layout/level.css +31 -0
  45. package/src/layout/section.css +11 -0
  46. package/src/media-object.css +8 -0
  47. package/src/theme.css +39 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ajomuch92
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. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
package/README.md ADDED
@@ -0,0 +1,67 @@
1
+ # bulma-tailwind
2
+
3
+ Bulma CSS classes implemented with Tailwind CSS v4.
4
+ You can use the classes you know from Bulma (.button, .card, .modal, .columns, etc.) but the style is generated with Tailwind v4 utilities.
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ npm install bulma-tailwind
10
+ ```
11
+
12
+ ## Usage
13
+ Import the CSS into your project:
14
+
15
+ ```css
16
+ @import "bulma-tailwind";
17
+ ```
18
+
19
+ Or include the compiled file:
20
+
21
+ ```html
22
+ <link rel="stylesheet" href="node_modules/bulma-tailwind/dist/bulma-tailwind.css">
23
+ ```
24
+
25
+ Then use the Bulma classes as usual:
26
+
27
+ ```html
28
+ <button class="button is-primary">Button</button>
29
+ <div class="card">
30
+ <div class="card-content">
31
+ <p class="title">Title</p>
32
+ </div>
33
+ </div>
34
+ <div class="columns">
35
+ <div class="column is-6">Column</div>
36
+ </div>
37
+ ```
38
+
39
+ ## Supported classes
40
+ - Elements: button, box, content, delete, icon, image, notification, progress, table, tag, title.
41
+
42
+ - Components: breadcrumb, card, dropdown, menu, message, modal, navbar, pagination, panel, tabs.
43
+
44
+ - Form: general (field, label, control, help), input, textarea, select, checkbox, radio, file.
45
+
46
+ - Layout: columns (grid), container, hero, section, level.
47
+
48
+ - Others: media object, footer.
49
+
50
+ ## Customization
51
+ The package uses CSS variables defined in :root. You can override them:
52
+
53
+ ```css
54
+ :root {
55
+ --color-primary: #ff5722;
56
+ --color-link: #2196f3;
57
+ --color-info: #3e8ed0;
58
+ --color-success: #48c78e;
59
+ --color-warning: #ffe08c;
60
+ --color-danger: #f14668;
61
+ --color-light: #f5f5f5;
62
+ --color-dark: #363636;
63
+ }
64
+ ```
65
+
66
+ ## License
67
+ MIT License