@appartmint/css-mint 0.0.40 → 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.
Files changed (87) hide show
  1. package/dist/amplify.css +634 -0
  2. package/dist/amplify.css.map +1 -0
  3. package/dist/amplify.min.css +1 -0
  4. package/dist/amplify.min.css.map +1 -0
  5. package/dist/angular.css +49 -0
  6. package/dist/angular.css.map +1 -0
  7. package/dist/angular.min.css +1 -0
  8. package/dist/angular.min.css.map +1 -0
  9. package/dist/full-calendar.css +43 -0
  10. package/dist/full-calendar.css.map +1 -0
  11. package/dist/full-calendar.min.css +1 -0
  12. package/dist/full-calendar.min.css.map +1 -0
  13. package/dist/index.css +3845 -0
  14. package/dist/index.css.map +1 -0
  15. package/dist/index.min.css +1 -0
  16. package/dist/index.min.css.map +1 -0
  17. package/dist/noscript.css +5 -0
  18. package/dist/noscript.css.map +1 -0
  19. package/dist/noscript.min.css +1 -0
  20. package/dist/noscript.min.css.map +1 -0
  21. package/dist/recaptcha.css +5 -0
  22. package/dist/recaptcha.css.map +1 -0
  23. package/dist/recaptcha.min.css +1 -0
  24. package/dist/recaptcha.min.css.map +1 -0
  25. package/dist/swiper.css +35 -0
  26. package/dist/swiper.css.map +1 -0
  27. package/dist/swiper.min.css +1 -0
  28. package/dist/swiper.min.css.map +1 -0
  29. package/package.json +11 -4
  30. package/src/components/form/edit-info.scss +27 -0
  31. package/src/components/form/index.scss +1 -0
  32. package/src/components/form/input/array.scss +24 -0
  33. package/src/components/form/input/checkbox.scss +0 -0
  34. package/src/components/form/input/dropdown.scss +20 -0
  35. package/src/components/form/input/global.scss +18 -0
  36. package/src/components/form/input/index.scss +8 -0
  37. package/src/components/form/input/input.scss +13 -0
  38. package/src/components/form/input/label.scss +31 -0
  39. package/src/components/form/input/select.scss +15 -0
  40. package/src/components/form/input/textarea.scss +10 -0
  41. package/src/components/form/input/toggle.scss +21 -13
  42. package/src/components/index.scss +1 -0
  43. package/src/components/partial/background.scss +43 -0
  44. package/src/components/partial/chat.scss +130 -0
  45. package/src/components/partial/footer.scss +169 -0
  46. package/src/components/partial/header.scss +484 -0
  47. package/src/components/partial/index.scss +4 -0
  48. package/src/components/section/flex.scss +64 -0
  49. package/src/components/section/full.scss +40 -0
  50. package/src/components/section/grid.scss +130 -2
  51. package/src/components/section/index.scss +3 -0
  52. package/src/components/section/landing.scss +52 -0
  53. package/src/components/ui/icon.scss +73 -0
  54. package/src/components/ui/index.scss +4 -1
  55. package/src/components/ui/link.scss +33 -0
  56. package/src/components/ui/list.scss +32 -0
  57. package/src/components/ui/media/embed.scss +9 -0
  58. package/src/components/ui/media/global.scss +13 -0
  59. package/src/components/ui/{image.scss → media/image.scss} +2 -2
  60. package/src/components/ui/media/index.scss +3 -0
  61. package/src/components/widget/index.scss +2 -0
  62. package/src/components/widget/{_panel.scss → panel.scss} +16 -16
  63. package/src/components/widget/{_table.scss → table.scss} +5 -7
  64. package/src/global/animations.scss +214 -0
  65. package/src/global/global.scss +75 -0
  66. package/src/global/index.scss +7 -1
  67. package/src/global/mask.scss +11 -1
  68. package/src/global/shadow.scss +20 -0
  69. package/src/global/structure.scss +101 -0
  70. package/src/global/text.scss +93 -0
  71. package/src/global/texture.scss +154 -0
  72. package/src/global/themes.scss +26 -0
  73. package/src/modules/amplify.scss +44 -0
  74. package/src/modules/angular.scss +67 -0
  75. package/src/modules/full-calendar.scss +60 -0
  76. package/src/modules/noscript.scss +12 -0
  77. package/src/modules/recaptcha.scss +15 -0
  78. package/src/modules/swiper.scss +59 -0
  79. package/src/themes/colors.scss +19 -1
  80. package/src/themes/index.scss +0 -1
  81. package/src/themes/structure.scss +1 -2
  82. package/src/util/break.scss +6 -6
  83. package/src/util/color.scss +3 -1
  84. package/src/util/text.scss +1 -0
  85. package/src/components/widget/_tooltip.scss +0 -106
  86. package/src/global/size.scss +0 -15
  87. package/src/themes/fonts.scss +0 -18
@@ -1,4 +1,5 @@
1
1
  @use './form';
2
+ @use './partial';
2
3
  @use './section';
3
4
  @use './ui';
4
5
  @use './widget';
@@ -0,0 +1,43 @@
1
+ /// background.scss - Static background styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Partial
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util' as *;
9
+
10
+ /// Background Styles
11
+
12
+ :root {
13
+ @include css-var(bg-blur, 10vw);
14
+ @include css-var(bg-blur-active, 0.15vw);
15
+ }
16
+
17
+ #{class(bg)} {
18
+ display: block;
19
+ opacity: 0;
20
+ height: 0;
21
+ width: 0;
22
+ z-index: -1;
23
+ transform: none !important;
24
+ }
25
+
26
+ #{class(background)} {
27
+ position: fixed;
28
+ left: 0;
29
+ top: 0;
30
+ width: 100vw;
31
+ height: 100vh;
32
+ object-fit: cover;
33
+ background-size: cover;
34
+ background-position: center;
35
+ background-repeat: no-repeat;
36
+ z-index: 0;
37
+ filter: opacity(0) blur(css-var(bg-blur));
38
+ transition: filter 1000ms ease-out;
39
+
40
+ &.active {
41
+ filter: opacity(1) blur(css-var(bg-blur-active));
42
+ }
43
+ }
@@ -0,0 +1,130 @@
1
+ /// chat.scss - Chatbot styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Components
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util/break' as *;
9
+ @use '../../util/selector' as *;
10
+
11
+ :root {
12
+ @include css-var-ref(chat-user, c-bg-1);
13
+ @include css-var-ref(chat-bot, c-brand-1);
14
+ }
15
+
16
+ #{class(chatbot)} {
17
+ display: flex;
18
+ flex-direction: column;
19
+ flex-grow: 1;
20
+ justify-content: flex-end;
21
+ position: relative;
22
+ gap: 1rem;
23
+ min-height: calc(100vh - css-var(header-h));
24
+ min-height: calc(100dvh - css-var(header-h));
25
+
26
+ @include break(xs) {
27
+ min-height: unset;
28
+ }
29
+
30
+ #{class(output)} {
31
+ display: flex;
32
+ position: absolute;
33
+ top: 0;
34
+ left: 0;
35
+ width: 100%;
36
+ height: calc(100% - 75px);
37
+ overflow-y: auto;
38
+ }
39
+
40
+ #{class(chat)} {
41
+ display: flex;
42
+ flex-direction: column;
43
+ gap: 0;
44
+ width: 100%;
45
+ min-height: 100%;
46
+ padding: 1rem;
47
+ font-size: 1.125rem;
48
+ overflow-x: hidden;
49
+
50
+ &::before {
51
+ content: '';
52
+ flex-grow: 1;
53
+ }
54
+
55
+ p {
56
+ align-self: flex-start;
57
+ margin: 0;
58
+ color: #000;
59
+
60
+ @include break(xs) {
61
+ max-width: 75%;
62
+ }
63
+
64
+ &:nth-child(even) {
65
+ align-self: flex-end;
66
+
67
+ span {
68
+ background-color: css-var(chat-bot);
69
+
70
+ &::before {
71
+ left: unset;
72
+ right: 0;
73
+ transform: translate(-5%, 90%) skew(50deg, 10deg);
74
+ border-color: css-var(chat-bot) transparent transparent transparent;
75
+ }
76
+ }
77
+ }
78
+
79
+ span {
80
+ display: block;
81
+ position: relative;
82
+ padding: 1rem;
83
+ margin-bottom: 2rem;
84
+ background-color: css-var(chat-user);
85
+ border-radius: 0.5rem;
86
+
87
+ &::before {
88
+ content: '';
89
+ position: absolute;
90
+ bottom: 0;
91
+ left: 0;
92
+ transform: translate(5%, 90%) skew(-50deg, 10deg);
93
+ width: 0;
94
+ height: 0;
95
+ border: 0.5rem solid;
96
+ border-color: css-var(chat-user) transparent transparent transparent;
97
+ }
98
+ }
99
+ }
100
+ }
101
+
102
+ #{class(input)} {
103
+ position: relative;
104
+ width: 100%;
105
+ max-width: 550px;
106
+ margin: 0 auto;
107
+
108
+ input {
109
+ font-size: 1.25rem;
110
+ padding-right: 47px;
111
+ }
112
+
113
+ button {
114
+ position: absolute;
115
+ top: 0;
116
+ right: 0;
117
+ height: 100%;
118
+ padding: 0 1rem;
119
+ border-top-right-radius: 1rem;
120
+ border-bottom-right-radius: 1rem;
121
+ border: none;
122
+ transition: all 0.3s ease-in-out;
123
+
124
+ @include states(hover, focus) {
125
+ background: css-var(c-fg) !important;
126
+ color: css-var(c-bg);
127
+ }
128
+ }
129
+ }
130
+ }
@@ -0,0 +1,169 @@
1
+ /// footer.scss - Footer styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Components
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util/break' as *;
9
+ @use '../../util/selector' as *;
10
+ @use '../../util/time' as *;
11
+
12
+ :root {
13
+ @include css-var-ref(footer-bg, c-bg);
14
+ @include css-var-ref(footer-heel-bg, c-brand-6);
15
+ @include css-var-ref(footer-heel-fg, c-fg);
16
+ @include css-var-ref(footer-shadow-c, shadow-c);
17
+ @include css-var-ref(footer-shadow-s, shadow-s);
18
+ }
19
+
20
+ #{class(theme)} {
21
+ &-dark {
22
+ @include css-var-ref(footer-heel-bg, c-brand-4);
23
+ }
24
+ }
25
+
26
+ #{class(footer)} {
27
+ display: flex;
28
+ flex-direction: column;
29
+ max-width: 100%;
30
+ background: css-var(footer-bg);
31
+ box-shadow: css-var(footer-shadow-s) css-var(footer-shadow-c);
32
+ transition: transform time(default);
33
+ z-index: 999;
34
+ overflow: hidden;
35
+
36
+ &#{class(hide)} {
37
+ display: flex;
38
+ transform: translateY(100%);
39
+ transition: transform time(instant);
40
+ }
41
+
42
+ * {
43
+ max-width: 100%;
44
+ }
45
+
46
+ p {
47
+ margin: 0;
48
+ }
49
+
50
+ &-content {
51
+ display: flex;
52
+ flex-direction: column;
53
+ flex-wrap: wrap;
54
+ align-items: center;
55
+ justify-content: space-between;
56
+ gap: 0.5rem;
57
+
58
+ @include break(sm) {
59
+ flex-direction: row;
60
+ align-items: flex-start;
61
+ }
62
+
63
+ &>p {
64
+ margin: 0 auto;
65
+ text-align: center;
66
+ align-self: center;
67
+
68
+ a {
69
+ display: block;
70
+ }
71
+ }
72
+
73
+ [label="Footer"] {
74
+ width: 100%;
75
+ margin: auto;
76
+
77
+ @include break(sm) {
78
+ width: auto;
79
+ }
80
+
81
+ &>ul {
82
+ flex-direction: column;
83
+ flex-wrap: wrap;
84
+ justify-content: space-around;
85
+ text-align: center;
86
+
87
+ @include break(xs) {
88
+ flex-direction: row;
89
+ }
90
+
91
+ &>ul {
92
+ li:last-child {
93
+ #{class(pill)} {
94
+ margin-bottom: 0;
95
+ }
96
+ }
97
+ }
98
+ }
99
+
100
+ #{class(pill)} {
101
+ margin-bottom: 0.5rem;
102
+ }
103
+ }
104
+ }
105
+
106
+ &-heel {
107
+ display: flex;
108
+ flex-direction: column;
109
+ align-items: center;
110
+ justify-content: space-between;
111
+ gap: 0.5rem;
112
+ padding: 0.4rem 1rem;
113
+ color: css-var(footer-heel-fg);
114
+ background: css-var(footer-heel-bg);
115
+ text-align: center;
116
+
117
+ @include break(sm) {
118
+ flex-direction: row;
119
+ }
120
+
121
+ & > * {
122
+ width: 100%;
123
+ }
124
+
125
+ p {
126
+ @include break(sm) {
127
+ text-align: left;
128
+ }
129
+ }
130
+ }
131
+
132
+ &-social {
133
+ display: flex;
134
+ align-items: center;
135
+ justify-content: center;
136
+ flex-wrap: wrap;
137
+ }
138
+
139
+ &-message {
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ flex-wrap: wrap;
144
+
145
+ @include break(xs) {
146
+ flex-wrap: nowrap;
147
+ }
148
+
149
+ @include break(sm) {
150
+ justify-content: flex-end;
151
+ }
152
+
153
+ &>#{class(pill)} {
154
+ margin: 0 0.25rem;
155
+ }
156
+
157
+ &>* {
158
+ margin: 0 0.5rem;
159
+
160
+ &:first-child {
161
+ margin-left: 0;
162
+ }
163
+
164
+ &:last-child {
165
+ margin-right: 0;
166
+ }
167
+ }
168
+ }
169
+ }