nk_jtb 0.19.1 → 0.20.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 (39) hide show
  1. package/dev.html +6 -5
  2. package/dev1.html +18 -0
  3. package/dev2.html +18 -0
  4. package/directory-structure.md +15 -0
  5. package/flexbox.html +723 -0
  6. package/index.html +972 -1801
  7. package/layout-examples.html +44 -0
  8. package/package.json +1 -1
  9. package/readme.md +40 -32
  10. package/src/base/_base.scss +12 -74
  11. package/src/base/_content_gap.scss +18 -5
  12. package/src/base/_list.scss +44 -0
  13. package/src/base/_typography.scss +0 -50
  14. package/src/base/index.scss +1 -0
  15. package/src/build.scss +0 -1
  16. package/src/components/_button.scss +44 -15
  17. package/src/components/_icon.scss +2 -2
  18. package/src/components/_menu.scss +43 -18
  19. package/src/components/index.scss +0 -1
  20. package/src/extras/_nk-app.scss +15 -7
  21. package/src/forms/_control.scss +18 -15
  22. package/src/functions/_color-functions.scss +57 -62
  23. package/src/maps_and_variables/_base.scss +2 -2
  24. package/src/maps_and_variables/_colors.scss +4 -0
  25. package/src/maps_and_variables/_components.scss +5 -5
  26. package/src/maps_and_variables/_form-controls.scss +25 -6
  27. package/src/maps_and_variables/_property-maps.scss +50 -100
  28. package/src/maps_and_variables/_utility-maps.scss +1 -1
  29. package/src/play.scss +1 -86
  30. package/src/tests.scss +13 -0
  31. package/src/utilities/_alignment.scss +50 -6
  32. package/src/utilities/_backgrounds.scss +31 -26
  33. package/src/utilities/_flexbox.scss +1 -0
  34. package/src/utilities/_grid.scss +0 -19
  35. package/src/utilities/_misc.scss +122 -9
  36. package/vite.config.js +4 -2
  37. package/src/_random-for-review.scss +0 -89
  38. package/src/components/_sidebar.scss +0 -7
  39. package/src/vars.scss +0 -11
package/dev.html CHANGED
@@ -3,15 +3,16 @@
3
3
 
4
4
  <head>
5
5
  <meta charset="UTF-8" />
6
- <link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
7
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
- <title>NayKel JTB</title>
9
- <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
7
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
8
+ <title>DEV</title>
10
9
  <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
10
+ <!-- <script src="https://cdn.tailwindcss.com"></script> -->
11
11
  </head>
12
12
 
13
- <body class="zebra c-py-5-3-2">
14
- <div id="app"></div>
13
+
14
+ <body class="container py-5">
15
+
15
16
  <script type="module" src="/main.js"></script>
16
17
  </body>
17
18
 
package/dev1.html ADDED
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
8
+ <title>DEV 1</title>
9
+ <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
10
+ <!-- <script src="https://cdn.tailwindcss.com"></script> -->
11
+ </head>
12
+
13
+ <body class="pxy">
14
+
15
+ <script type="module" src="/main.js"></script>
16
+ </body>
17
+
18
+ </html>
package/dev2.html ADDED
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
8
+ <title>DEV 2</title>
9
+ <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
10
+ <!-- <script src="https://cdn.tailwindcss.com"></script> -->
11
+ </head>
12
+
13
+ <body class="pxy">
14
+
15
+ <script type="module" src="/main.js"></script>
16
+ </body>
17
+
18
+ </html>
@@ -1,5 +1,20 @@
1
1
  # SCSS Directory Structure
2
2
 
3
+
4
+ ```bash
5
+ scss/
6
+ ├── base/
7
+ │ ├── _index.scss # Main entry point
8
+ │ ├── _base.scss # html, body, box-sizing
9
+ │ ├── _typography.scss # headings, p, text elements
10
+ │ ├── _lists.scss # ul, ol, li
11
+ │ ├── _tables.scss # table, td, th
12
+ │ ├── _forms.scss # input, button, select, textarea
13
+ │ ├── _media.scss # img, svg, video
14
+ │ └── _interactive.scss # a, button, details/summary
15
+ ```
16
+
17
+
3
18
  ## Current Structure
4
19
 
5
20
  ```bash