@appartmint/css-mint 0.1.0 → 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 (86) 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 +3471 -638
  14. package/dist/index.css.map +1 -1
  15. package/dist/index.min.css +1 -1
  16. package/dist/index.min.css.map +1 -1
  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 +6 -3
  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 +9 -1
  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/text.scss +1 -0
  84. package/src/components/widget/_tooltip.scss +0 -106
  85. package/src/global/size.scss +0 -15
  86. package/src/themes/fonts.scss +0 -18
@@ -0,0 +1,20 @@
1
+ /// shadow.scss - Shadow styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Global
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../util/selector' as *;
9
+
10
+ #{class(glow)} {
11
+ box-shadow: 0 0 2rem -0.5rem css-var(glow-2);
12
+ }
13
+
14
+ #{class(shadow)} {
15
+ box-shadow: 0 0 2rem -0.5rem css-var(shadow-2);
16
+ }
17
+
18
+ #{class(no-glow)} {
19
+ box-shadow: none !important;
20
+ }
@@ -0,0 +1,101 @@
1
+ /// structure.scss - Structure styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Global
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use 'sass:map';
9
+ @use '../util/box' as *;
10
+ @use '../util/break' as *;
11
+ @use '../util/selector' as *;
12
+
13
+ /// Structure styles
14
+ #{class(p)} {
15
+ @include box-util(padding, 1rem);
16
+ @include break-util(padding, 0.5rem, 0);
17
+
18
+ @include break(xs) {
19
+ @include break-util(padding, 1rem, 0);
20
+ }
21
+ }
22
+
23
+ #{class(m)} {
24
+ @include box-util(margin, 1rem);
25
+ @include break-util(margin, 0.5rem, 0);
26
+
27
+ @include break(xs) {
28
+ @include break-util(margin, 1rem, 0);
29
+ }
30
+ }
31
+
32
+ #{class(hide)} {
33
+ @include break-util(display, initial, none);
34
+ }
35
+
36
+ #{class(max)} {
37
+ @each $size in map.keys($break) {
38
+ &-#{$size} {
39
+ width: 100%;
40
+ max-width: break($size);
41
+
42
+ &:not(#{class(left)}) {
43
+ margin-left: auto;
44
+ }
45
+
46
+ &:not(#{class(right)}) {
47
+ margin-right: auto;
48
+ }
49
+ }
50
+ }
51
+ }
52
+
53
+ #{class(half-w)} {
54
+ width: 50%;
55
+ margin-left: auto;
56
+ margin-right: auto;
57
+ }
58
+
59
+ #{class(center)} {
60
+ align-items: center;
61
+ justify-content: center;
62
+ text-align: center;
63
+
64
+ &-down {
65
+ &, & * {
66
+ align-items: center;
67
+ justify-content: center;
68
+ text-align: center;
69
+ }
70
+ }
71
+ }
72
+
73
+ #{class(fit)} {
74
+ width: fit-content;
75
+ height: fit-content;
76
+
77
+ &:not(#{class(left)}) {
78
+ margin-left: auto;
79
+ }
80
+
81
+ &:not(#{class(right)}) {
82
+ margin-right: auto;
83
+ }
84
+ }
85
+
86
+ #{class(left)} {
87
+ float: left;
88
+ }
89
+
90
+ #{class(right)} {
91
+ float: right;
92
+ }
93
+
94
+ #{class(full-page)} {
95
+ display: flex;
96
+ flex-direction: column;
97
+ align-items: center;
98
+ justify-content: center;
99
+ min-height: calc(100vh - css-var(header-h));
100
+ min-height: calc(100dvh - css-var(header-h));
101
+ }
@@ -0,0 +1,93 @@
1
+ /// text.scss - Text styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Global
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use 'sass:map';
9
+ @use '../util/break' as *;
10
+ @use '../util/selector' as *;
11
+ @use '../util/text' as *;
12
+
13
+ /// Text Styles
14
+ $font-min: (h1: 15vw, h2: 12vw, h3: 10vw, h4: 8vw, h5: 7vw, h6: 6vw, p: 1rem);
15
+ $font-mobile: (h1: 2.5rem, h2: 2rem, h3: 1.75rem, h4: 1.5rem, h5: 1.25rem, h6: 1.125rem, p: 1rem);
16
+ $font-desktop: (h1: 3rem, h2: 2.5rem, h3: 2rem, h4: 1.75rem, h5: 1.5rem, h6: 1.25rem, p: 1.125rem);
17
+
18
+ :root {
19
+ @include css-var(font-text, sans-serif);
20
+ @include css-var(font-title, serif);
21
+ @include css-var(font-backups, (-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'));
22
+ @include css-var(font-title-backups, (-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'));
23
+ @include css-var(font-h, 1.25);
24
+
25
+ @each $tag in map.keys($font-min) {
26
+ @include css-var(font-min-#{$tag}, map.get($font-min, $tag));
27
+ }
28
+
29
+ @each $tag in map.keys($font-mobile) {
30
+ @include css-var(font-mobile-#{$tag}, map.get($font-mobile, $tag));
31
+ }
32
+
33
+ @each $tag in map.keys($font-desktop) {
34
+ @include css-var(font-desktop-#{$tag}, map.get($font-desktop, $tag));
35
+ }
36
+ }
37
+
38
+ html, body {
39
+ font-family: css-var(font-text), css-var(font-backups);
40
+ font-size: min(css-var(font-min-p), css-var(font-mobile-p));
41
+
42
+ @include break(xs) {
43
+ font-size: css-var(font-mobile-p);
44
+ }
45
+
46
+ @include break(md) {
47
+ font-size: css-var(font-desktop-p);
48
+ }
49
+ }
50
+
51
+ p {
52
+ line-height: css-var(font-h);
53
+ }
54
+
55
+ @include headers () {
56
+ font-family: css-var(font-title), css-var(font-title-backups);
57
+ line-height: 1;
58
+
59
+ &:first-child {
60
+ margin-top: 0;
61
+ }
62
+
63
+ &:last-child {
64
+ margin-bottom: 0;
65
+ }
66
+ }
67
+
68
+ @each $tag in map.keys($font-min) {
69
+ #{$tag}, #{class($tag)} {
70
+ margin: 1rem 0;
71
+ font-size: min(css-var(font-min-#{$tag}), css-var(font-mobile-#{$tag}));
72
+
73
+ @include break(xs) {
74
+ font-size: css-var(font-mobile-#{$tag});
75
+ }
76
+
77
+ @include break(md) {
78
+ font-size: css-var(font-desktop-#{$tag});
79
+ }
80
+ }
81
+ }
82
+
83
+ #{class(upper)} {
84
+ text-transform: uppercase;
85
+ }
86
+
87
+ #{class(disclaim)} {
88
+ font-size: 0.875em;
89
+
90
+ @include break-max(xs) {
91
+ text-align: center;
92
+ }
93
+ }
@@ -0,0 +1,154 @@
1
+ /// texture.scss - Texture styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Global
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use 'sass:list';
9
+ @use 'sass:math';
10
+ @use '../util/selector' as *;
11
+ @use '../util/break' as *;
12
+
13
+ /// Texture Mixin
14
+ $texture-bc: null !default;
15
+ $texture-bg: null !default;
16
+ $texture-bi: null !default;
17
+ $texture-alt-bg: null !default;
18
+
19
+ :root {
20
+ @include css-var(texture-bg, $texture-bg);
21
+ @include css-var(texture-bg-s, cover);
22
+ @include css-var(texture-bg-pos, top);
23
+ @include css-var(texture-blend, normal);
24
+ @include css-var(texture-filter, none);
25
+ @include css-var(texture-opacity, 1);
26
+ @include css-var(texture-alt-bg-s, cover);
27
+ @include css-var(texture-alt-bg-pos, center);
28
+ @include css-var(texture-alt-blend, normal);
29
+ @include css-var(texture-alt-mask, none);
30
+ @include css-var(texture-alt-opacity, 1);
31
+ @include css-var(texture-p, 1rem);
32
+ @include css-var(texture-bw, 1.25rem);
33
+ @include css-var(texture-bc, $texture-bc);
34
+ @include css-var(texture-bi, $texture-bi);
35
+ @include css-var(texture-bis, 42 42);
36
+ @include css-var(texture-bir, round);
37
+ @include css-var(texture-bst, solid);
38
+ }
39
+
40
+ @mixin mint-texture () {
41
+ position: relative;
42
+ background-color: css-var(bg);
43
+
44
+ &::before, &::after {
45
+ content: '';
46
+ position: absolute;
47
+ top: 0;
48
+ left: 0;
49
+ width: 100%;
50
+ height: 100%;
51
+ pointer-events: none;
52
+ }
53
+
54
+ &::before {
55
+ opacity: css-var(texture-opacity);
56
+ background-image: css-var(texture-bg);
57
+ background-size: css-var(texture-bg-s);
58
+ background-position: css-var(texture-bg-pos);
59
+ mix-blend-mode: css-var(texture-blend);
60
+ filter: css-var(texture-filter);
61
+ }
62
+
63
+ &::after {
64
+ opacity: css-var(texture-alt-opacity);
65
+ background-size: css-var(texture-alt-bg-s);
66
+ background-position: css-var(texture-alt-bg-pos);
67
+ mask-image: css-var(texture-alt-mask);
68
+ mix-blend-mode: css-var(texture-alt-blend);
69
+ z-index: 1;
70
+ }
71
+
72
+ & > * {
73
+ position: relative;
74
+ z-index: 10;
75
+ }
76
+ }
77
+
78
+ /// Border Mixin
79
+ @mixin mint-border () {
80
+ padding: math.div(css-var(texture-p), 2) + css-var(texture-bw);
81
+ border-image-source: css-var(texture-bi);
82
+ border-image-slice: css-var(texture-bis);
83
+ border-image-repeat: css-var(texture-bir);
84
+ border-image-width: css-var(texture-bw);
85
+ border-style: css-var(texture-bst);
86
+
87
+ @include break(sm) {
88
+ padding: css-var(texture-p) + css-var(texture-bw);
89
+ }
90
+ }
91
+
92
+ /// Texture Styles
93
+ #{class(texture)} {
94
+ @if $texture-bg {
95
+ @include mint-texture();
96
+ }
97
+ }
98
+
99
+ /// Border Styles
100
+ #{class(border)} {
101
+ @extend #{class(texture)};
102
+ @if $texture-bi {
103
+ @include mint-border();
104
+ } @else if $texture-bc {
105
+ border: css-var(texture-bw) css-var(texture-bst) css-var(texture-bc);
106
+ }
107
+ }
108
+
109
+ #{class(frame)} {
110
+ height: fit-content;
111
+ background-color: css-var(card-bg);
112
+
113
+ @extend #{class(border)};
114
+ @if $texture-bi {
115
+ padding: css-var(texture-bw);
116
+ } @else if $texture-bc {
117
+ padding: 0;
118
+ }
119
+ }
120
+
121
+ #{class(card)} {
122
+ #{class(content)} {
123
+ @extend #{class(border)};
124
+ }
125
+
126
+ &-grid {
127
+ #{class(image)} {
128
+ @extend #{class(border)};
129
+ position: absolute;
130
+ }
131
+ }
132
+ }
133
+
134
+ /// Alt Texture Styles
135
+ @if $texture-alt-bg and list.length($texture-alt-bg) > 0 {
136
+ @for $num from 1 through list.length($texture-alt-bg) {
137
+ #{class(texture-#{$num})} {
138
+ #{class(content)} {
139
+ &::after {
140
+ background-image: url(#{list.nth($texture-alt-bg, $num)});
141
+ }
142
+ }
143
+ }
144
+ }
145
+ }
146
+
147
+ /// Overlay texture
148
+ #{class(overlay)} {
149
+ #{class(border)}, #{class(texture)} {
150
+ &::before {
151
+ z-index: 100;
152
+ }
153
+ }
154
+ }
@@ -0,0 +1,26 @@
1
+ /// themes.scss - Styles for ui theming
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Themes
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../util/selector' as *;
9
+
10
+ @each $theme in success, danger, warning, info {
11
+ #{class(theme-#{$theme})} {
12
+ background-color: css-var(c-#{$theme}-2);
13
+ border-color: css-var(c-#{$theme}-4);
14
+ }
15
+ }
16
+
17
+ #{class(theme)} {
18
+ &-dark {
19
+ @each $theme in success, danger, warning, info {
20
+ #{class(theme-#{$theme})} {
21
+ background-color: css-var(c-#{$theme}-7);
22
+ border-color: css-var(c-#{$theme}-5);
23
+ }
24
+ }
25
+ }
26
+ }
@@ -0,0 +1,44 @@
1
+ /// amplify.scss - Amplify styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Modules
5
+ @charset 'utf-8';
6
+ @use '../util/selector' as *;
7
+ @use '../components/ui/button';
8
+ @use '../components/widget/card';
9
+
10
+ :root:root {
11
+ @include css-var-ref(--amplify-colors-background-error, c-glow-0);
12
+ @include css-var-ref(--amplify-colors-border-primary, c-brand-5);
13
+ @include css-var-ref(--amplify-colors-border-focus, c-brand-4);
14
+ @include css-var-ref(--amplify-colors-font-hover, c-brand-3);
15
+ @include css-var-ref(--amplify-colors-font-interactive, c-brand-5);
16
+ @include css-var-ref(--amplify-colors-font-primary, c-fg);
17
+ @include css-var-ref(--amplify-colors-font-secondary, c-brand-6);
18
+ @include css-var-ref(--amplify-colors-font-error, c-danger-5);
19
+ @include css-var-ref(--amplify-colors-font-warning, c-warning-5);
20
+ @include css-var-ref(--amplify-colors-font-success, c-success-5);
21
+ @include css-var-ref(--amplify-colors-font-info, c-info-5);
22
+ @include css-var-ref(--amplify-components-fieldcontrol-color, --amplify-colors-font-primary);
23
+
24
+ @include css-var-ref(--amplify-border-widths-small, bw);
25
+
26
+ [data-amplify-authenticator] {
27
+ [data-amplify-container] {
28
+ @extend #{class(card)};
29
+
30
+ [data-amplify-router] {
31
+ @extend #{class(content)};
32
+ }
33
+ }
34
+ }
35
+
36
+ [amplify-button] {
37
+ @extend #{class(btn)};
38
+ margin: auto;
39
+ }
40
+
41
+ .amplify-icon {
42
+ display: block;
43
+ }
44
+ }
@@ -0,0 +1,67 @@
1
+ /// angular.scss - Angular styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Modules
5
+ @charset 'utf-8';
6
+ @use '../util/selector' as *;
7
+
8
+ :root:root {
9
+ @include css-var-ref(--mat-table-background-color, c-bg);
10
+ @include css-var-ref(--mat-paginator-container-background-color, c-bg);
11
+ @include css-var-ref(--mat-table-row-item-label-text-color, c-fg);
12
+ @include css-var-ref(--mat-table-header-headline-color, c-fg);
13
+ @include css-var-ref(--mat-table-header-subheadline-color, c-fg);
14
+ @include css-var-ref(--mat-paginator-container-text-color, c-fg);
15
+ }
16
+
17
+ body {
18
+ &#{class(ready)} {
19
+ app-root {
20
+ opacity: 1;
21
+ }
22
+ }
23
+ }
24
+
25
+ router-outlet {
26
+ display: none;
27
+ }
28
+
29
+ app-root {
30
+ display: block;
31
+ position: relative;
32
+ opacity: 0;
33
+ transition: opacity 750ms ease-in;
34
+ }
35
+
36
+ :root {
37
+ main {
38
+ & > router-outlet {
39
+ flex-grow: 0;
40
+
41
+ & + * {
42
+ display: flex;
43
+ flex-direction: column;
44
+ align-items: center;
45
+ justify-content: center;
46
+ flex-grow: 1;
47
+ width: 100%;
48
+ padding: css-var(p-clamp);
49
+
50
+ &+:not(#{prefix(partial-footer)}) {
51
+ height: 0;
52
+ overflow: hidden;
53
+ }
54
+ }
55
+
56
+ & + #{prefix(partial-footer)} {
57
+ transform: translateY(100vh);
58
+ }
59
+ }
60
+ }
61
+ }
62
+
63
+ .cdk-overlay-container {
64
+ .mat-mdc-select-panel {
65
+ background: css-var(c-brand-4);
66
+ }
67
+ }
@@ -0,0 +1,60 @@
1
+ /// full-calendar.scss - FullCalendar styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Modules
5
+ @charset 'utf-8';
6
+ @use '../util/break' as *;
7
+ @use '../util/selector' as *;
8
+
9
+ .fc {
10
+ --fc-page-bg-color: #{css-var(c-brand-6)};
11
+
12
+ .fc-toolbar {
13
+ flex-wrap: wrap;
14
+ justify-content: space-around;
15
+ gap: 1rem;
16
+
17
+ &-title {
18
+ @include break-max(sm) {
19
+ font-size: 1.25rem;
20
+ }
21
+ }
22
+ }
23
+
24
+ .fc-timegrid {
25
+ &-divider {
26
+ padding: 0;
27
+ }
28
+ &-slot-minor {
29
+ border-top-style: groove;
30
+ }
31
+ }
32
+
33
+ .fc-list-table {
34
+ --fc-list-event-hover-bg-color: #{css-var(c-brand-4)};
35
+
36
+ @include break-max(sm) {
37
+ word-break: normal;
38
+ }
39
+
40
+ .fc-list-event-time {
41
+ @include break-max(xs) {
42
+ white-space: normal;
43
+ }
44
+ }
45
+ }
46
+
47
+ .fc-v-event {
48
+ .fc-event-title {
49
+ @include break(sm) {
50
+ font-size: 0.8em;
51
+ }
52
+ }
53
+ }
54
+ }
55
+
56
+ thead {
57
+ .fc-scroller {
58
+ overflow: hidden !important;
59
+ }
60
+ }
@@ -0,0 +1,12 @@
1
+ /// noscript.scss - Styles for when JavaScript is disabled
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Modules
5
+ @charset 'utf-8';
6
+ @use '../util/selector' as *;
7
+
8
+ #{id(header)} {
9
+ #{id(wrapper)} {
10
+ position: unset !important;
11
+ }
12
+ }
@@ -0,0 +1,15 @@
1
+ /// recaptcha.scss - Recaptcha styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Modules
5
+ @charset 'utf-8';
6
+
7
+ /// Hide the badge
8
+ /// Requires this on form:
9
+ ///
10
+ /// This site is protected by reCAPTCHA and the Google
11
+ /// <a href="https://policies.google.com/privacy">Privacy Policy</a> and
12
+ /// <a href="https://policies.google.com/terms">Terms of Service</a> apply.
13
+ .grecaptcha-badge {
14
+ visibility: hidden;
15
+ }
@@ -0,0 +1,59 @@
1
+ /// _swiper.scss - Swiper styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Overrides
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../util' as *;
9
+
10
+ /// Variables
11
+ $arrows-offset: 1rem;
12
+ $arrows-size: 2rem;
13
+
14
+ /// Swiper Styles
15
+ :root {
16
+ @include css-var-ref(--swiper-navigation-color, fore);
17
+ @include css-var-ref(--swiper-pagination-color, brand);
18
+ @include css-var(--swiper-navigation-size, $arrows-size);
19
+
20
+ .swiper {
21
+ max-width: 100%;
22
+
23
+ @include break(xs) {
24
+ @include css-var(--swiper-navigation-sides-offset, $arrows-offset);
25
+ }
26
+
27
+ &-slide {
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: center;
31
+
32
+ @include break(xs) {
33
+ padding: $arrows-offset + $arrows-size;
34
+ }
35
+ }
36
+
37
+ &-button {
38
+ &-prev,
39
+ &-next {
40
+ &::after {
41
+ font-family: "Font Awesome 6 Pro";
42
+ font-weight: 900;
43
+ }
44
+ }
45
+
46
+ &-prev {
47
+ &::after {
48
+ content: '\f053';
49
+ }
50
+ }
51
+
52
+ &-next {
53
+ &::after {
54
+ content: '\f054';
55
+ }
56
+ }
57
+ }
58
+ }
59
+ }
@@ -14,19 +14,36 @@
14
14
  @include shades(c-glow, rgba(255, 255, 255, 0));
15
15
  @include shades(c-shadow, rgba(0, 0, 0, 0));
16
16
 
17
- /// Brand Colors
17
+ /// Application Colors
18
18
  @include shades(c-brand, hsl(220, 35%, 50%));
19
19
  @include shades(c-accent, hsl(248, 39%, 50%));
20
20
  @include shades(c-success, hsl(120, 62%, 50%));
21
21
  @include shades(c-danger, hsl(0, 54%, 50%));
22
22
  @include shades(c-warning, hsl(37, 100%, 50%));
23
23
  @include shades(c-info, hsl(201, 50%, 50%));
24
+
25
+ /// Brand Colors
26
+ @include css-var(c-amazon, #F90);
27
+ @include css-var(c-apple-music, #fc3c44);
28
+ @include css-var(c-apple, #DDD);
29
+ @include css-var(c-bandcamp, #629aa9);
30
+ @include css-var(c-btc, #FF9900);
31
+ @include css-var(c-eth, #3C3C3D);
32
+ @include css-var(c-facebook, #3b5998);
33
+ @include css-var(c-google-play, #f55a34);
34
+ @include css-var(c-instagram, #8a3ab9);
35
+ @include css-var(c-soundcloud, #f26f23);
36
+ @include css-var(c-spotify, #84bd00);
37
+ @include css-var(c-twitter, #1da1f2);
38
+ @include css-var(c-venmo, #008CFF);
39
+ @include css-var(c-youtube, #F00);
24
40
  }
25
41
 
26
42
  /// App Colors
27
43
  :root {
28
44
  @include css-var-ref(c-fg, c-bw-8);
29
45
  @include css-var-ref(c-bg, c-bw-1);
46
+ @include css-var-ref(shadow-c, c-shadow-2);
30
47
  }
31
48
 
32
49
  /// App Themes
@@ -34,5 +51,6 @@
34
51
  &-dark {
35
52
  @include css-var-ref(c-fg, c-bw-1);
36
53
  @include css-var-ref(c-bg, c-bw-8);
54
+ @include css-var-ref(shadow-c, c-glow-2);
37
55
  }
38
56
  }
@@ -1,3 +1,2 @@
1
1
  @use './colors';
2
- @use './fonts';
3
2
  @use './structure';