bootsteam-theme 5.3.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 (58) hide show
  1. package/.gitattributes +66 -0
  2. package/README.md +5 -0
  3. package/dist/bootsteam-theme.css +12319 -0
  4. package/dist/bootsteam-theme.min.css +5 -0
  5. package/docs/alerts.html +118 -0
  6. package/docs/badges.html +140 -0
  7. package/docs/buttons.html +194 -0
  8. package/docs/carousel.html +109 -0
  9. package/docs/collapse.html +105 -0
  10. package/docs/containers.html +307 -0
  11. package/docs/css/bootsteam-theme.min.css +5 -0
  12. package/docs/dialogs.html +154 -0
  13. package/docs/forms.html +335 -0
  14. package/docs/index.html +108 -0
  15. package/docs/navs.html +250 -0
  16. package/docs/offcanvas.html +92 -0
  17. package/docs/plugins.html +99 -0
  18. package/docs/scripts/scripts.js +70 -0
  19. package/docs/scripts/themeHandler.js +57 -0
  20. package/docs/spinners.html +145 -0
  21. package/docs/tables.html +613 -0
  22. package/docs/themes.html +166 -0
  23. package/docs/toasts.html +119 -0
  24. package/docs/typography.html +176 -0
  25. package/docs-templates/alerts.html +76 -0
  26. package/docs-templates/badges.html +98 -0
  27. package/docs-templates/buttons.html +152 -0
  28. package/docs-templates/carousel.html +67 -0
  29. package/docs-templates/collapse.html +63 -0
  30. package/docs-templates/containers.html +265 -0
  31. package/docs-templates/dialogs.html +112 -0
  32. package/docs-templates/forms.html +293 -0
  33. package/docs-templates/index.html +66 -0
  34. package/docs-templates/navs.html +208 -0
  35. package/docs-templates/offcanvas.html +50 -0
  36. package/docs-templates/partials/_footer.html +4 -0
  37. package/docs-templates/partials/_head.html +7 -0
  38. package/docs-templates/partials/_nav.html +29 -0
  39. package/docs-templates/partials/_scripts.html +5 -0
  40. package/docs-templates/plugins.html +57 -0
  41. package/docs-templates/spinners.html +103 -0
  42. package/docs-templates/tables.html +571 -0
  43. package/docs-templates/themes.html +68 -0
  44. package/docs-templates/toasts.html +77 -0
  45. package/docs-templates/typography.html +134 -0
  46. package/gulpfile.js +51 -0
  47. package/package.json +17 -0
  48. package/src/_alerts.scss +65 -0
  49. package/src/_darkThemeOverrides.scss +74 -0
  50. package/src/_fieldset.scss +27 -0
  51. package/src/_forms.scss +134 -0
  52. package/src/_tables.scss +77 -0
  53. package/src/_twr-variables-dark.scss +23 -0
  54. package/src/_twr-variables.scss +71 -0
  55. package/src/bootsteam.scss +25 -0
  56. package/src/plugins/_allPlugins.scss +2 -0
  57. package/src/plugins/_slimSelect.scss +106 -0
  58. package/src/plugins/_summernote.scss +45 -0
package/.gitattributes ADDED
@@ -0,0 +1,66 @@
1
+ docs/* linguist-vendored
2
+ docs-templates/**/* linguist-vendored
3
+
4
+ ###############################################################################
5
+ # Set default behavior to automatically normalize line endings.
6
+ ###############################################################################
7
+ * text=auto
8
+
9
+ ###############################################################################
10
+ # Set default behavior for command prompt diff.
11
+ #
12
+ # This is need for earlier builds of msysgit that does not have it on by
13
+ # default for csharp files.
14
+ # Note: This is only used by command line
15
+ ###############################################################################
16
+ #*.cs diff=csharp
17
+
18
+ ###############################################################################
19
+ # Set the merge driver for project and solution files
20
+ #
21
+ # Merging from the command prompt will add diff markers to the files if there
22
+ # are conflicts (Merging from VS is not affected by the settings below, in VS
23
+ # the diff markers are never inserted). Diff markers may cause the following
24
+ # file extensions to fail to load in VS. An alternative would be to treat
25
+ # these files as binary and thus will always conflict and require user
26
+ # intervention with every merge. To do so, just uncomment the entries below
27
+ ###############################################################################
28
+ #*.sln merge=binary
29
+ #*.csproj merge=binary
30
+ #*.vbproj merge=binary
31
+ #*.vcxproj merge=binary
32
+ #*.vcproj merge=binary
33
+ #*.dbproj merge=binary
34
+ #*.fsproj merge=binary
35
+ #*.lsproj merge=binary
36
+ #*.wixproj merge=binary
37
+ #*.modelproj merge=binary
38
+ #*.sqlproj merge=binary
39
+ #*.wwaproj merge=binary
40
+
41
+ ###############################################################################
42
+ # behavior for image files
43
+ #
44
+ # image files are treated as binary by default.
45
+ ###############################################################################
46
+ #*.jpg binary
47
+ #*.png binary
48
+ #*.gif binary
49
+
50
+ ###############################################################################
51
+ # diff behavior for common document formats
52
+ #
53
+ # Convert binary document formats to text before diffing them. This feature
54
+ # is only available from the command line. Turn it on by uncommenting the
55
+ # entries below.
56
+ ###############################################################################
57
+ #*.doc diff=astextplain
58
+ #*.DOC diff=astextplain
59
+ #*.docx diff=astextplain
60
+ #*.DOCX diff=astextplain
61
+ #*.dot diff=astextplain
62
+ #*.DOT diff=astextplain
63
+ #*.pdf diff=astextplain
64
+ #*.PDF diff=astextplain
65
+ #*.rtf diff=astextplain
66
+ #*.RTF diff=astextplain
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Bootsteam Theme
2
+
3
+ Bootstrap theme inspired by Steam's store theme
4
+
5
+ [Live Demo](https://struttower.github.io/bootsteam-theme/)