@appartmint/css-mint 0.1.0 → 1.0.1
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.
- package/dist/amplify.css +630 -0
- package/dist/amplify.css.map +1 -0
- package/dist/amplify.min.css +1 -0
- package/dist/amplify.min.css.map +1 -0
- package/dist/angular.css +49 -0
- package/dist/angular.css.map +1 -0
- package/dist/angular.min.css +1 -0
- package/dist/angular.min.css.map +1 -0
- package/dist/full-calendar.css +43 -0
- package/dist/full-calendar.css.map +1 -0
- package/dist/full-calendar.min.css +1 -0
- package/dist/full-calendar.min.css.map +1 -0
- package/dist/index.css +3515 -634
- package/dist/index.css.map +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.min.css.map +1 -1
- package/dist/noscript.css +5 -0
- package/dist/noscript.css.map +1 -0
- package/dist/noscript.min.css +1 -0
- package/dist/noscript.min.css.map +1 -0
- package/dist/recaptcha.css +5 -0
- package/dist/recaptcha.css.map +1 -0
- package/dist/recaptcha.min.css +1 -0
- package/dist/recaptcha.min.css.map +1 -0
- package/dist/swiper.css +35 -0
- package/dist/swiper.css.map +1 -0
- package/dist/swiper.min.css +1 -0
- package/dist/swiper.min.css.map +1 -0
- package/package.json +6 -3
- package/src/components/form/edit-info.scss +27 -0
- package/src/components/form/index.scss +1 -0
- package/src/components/form/input/array.scss +24 -0
- package/src/components/form/input/checkbox.scss +0 -0
- package/src/components/form/input/dropdown.scss +20 -0
- package/src/components/form/input/global.scss +18 -0
- package/src/components/form/input/index.scss +8 -0
- package/src/components/form/input/input.scss +13 -0
- package/src/components/form/input/label.scss +31 -0
- package/src/components/form/input/select.scss +15 -0
- package/src/components/form/input/textarea.scss +10 -0
- package/src/components/form/input/toggle.scss +62 -2
- package/src/components/index.scss +1 -0
- package/src/components/partial/background.scss +43 -0
- package/src/components/partial/chat.scss +130 -0
- package/src/components/partial/footer.scss +169 -0
- package/src/components/partial/header.scss +484 -0
- package/src/components/partial/index.scss +4 -0
- package/src/components/section/flex.scss +64 -0
- package/src/components/section/full.scss +40 -0
- package/src/components/section/grid.scss +130 -2
- package/src/components/section/index.scss +3 -0
- package/src/components/section/landing.scss +52 -0
- package/src/components/ui/button.scss +7 -11
- package/src/components/ui/icon.scss +73 -0
- package/src/components/ui/index.scss +4 -1
- package/src/components/ui/link.scss +33 -0
- package/src/components/ui/list.scss +32 -0
- package/src/components/ui/media/embed.scss +9 -0
- package/src/components/ui/media/global.scss +13 -0
- package/src/components/ui/{image.scss → media/image.scss} +2 -2
- package/src/components/ui/media/index.scss +3 -0
- package/src/components/widget/index.scss +2 -0
- package/src/components/widget/{_panel.scss → panel.scss} +16 -16
- package/src/components/widget/{_table.scss → table.scss} +5 -7
- package/src/global/animations.scss +214 -0
- package/src/global/global.scss +75 -0
- package/src/global/index.scss +7 -1
- package/src/global/mask.scss +11 -1
- package/src/global/shadow.scss +20 -0
- package/src/global/structure.scss +101 -0
- package/src/global/text.scss +93 -0
- package/src/global/texture.scss +154 -0
- package/src/global/themes.scss +26 -0
- package/src/modules/amplify.scss +44 -0
- package/src/modules/angular.scss +67 -0
- package/src/modules/full-calendar.scss +60 -0
- package/src/modules/noscript.scss +12 -0
- package/src/modules/recaptcha.scss +15 -0
- package/src/modules/swiper.scss +59 -0
- package/src/themes/colors.scss +19 -1
- package/src/themes/index.scss +0 -1
- package/src/themes/structure.scss +1 -2
- package/src/util/break.scss +6 -6
- package/src/util/text.scss +1 -0
- package/src/components/widget/_tooltip.scss +0 -106
- package/src/global/size.scss +0 -15
- package/src/themes/fonts.scss +0 -18
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/// global.scss - Global 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
|
+
:root {
|
|
11
|
+
@include css-var(root-bg-s, cover);
|
|
12
|
+
@include css-var(root-bg-img, none);
|
|
13
|
+
@include css-var(root-bg-pos, center);
|
|
14
|
+
@include css-var(root-bg-filter, none);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
* {
|
|
18
|
+
&,
|
|
19
|
+
&::before,
|
|
20
|
+
&::after {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
html {
|
|
26
|
+
overflow-x: hidden;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
html,
|
|
30
|
+
body {
|
|
31
|
+
min-height: 100vh;
|
|
32
|
+
margin: 0;
|
|
33
|
+
padding: 0;
|
|
34
|
+
scroll-behavior: smooth;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
body {
|
|
38
|
+
color: css-var(c-fg);
|
|
39
|
+
background-color: css-var(c-bg);
|
|
40
|
+
|
|
41
|
+
&#{class(fixed)} {
|
|
42
|
+
main {
|
|
43
|
+
min-height: 100vh;
|
|
44
|
+
min-height: 100dvh;
|
|
45
|
+
padding-top: css-var(header-h);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
main {
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
position: relative;
|
|
54
|
+
width: 100%;
|
|
55
|
+
min-height: calc(100vh - css-var(header-h));
|
|
56
|
+
min-height: calc(100dvh - css-var(header-h));
|
|
57
|
+
padding-left: css-var(pad-clamp);
|
|
58
|
+
padding-right: css-var(pad-clamp);
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
z-index: 999;
|
|
61
|
+
|
|
62
|
+
&::before {
|
|
63
|
+
content: '';
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 0;
|
|
67
|
+
width: 100%;
|
|
68
|
+
height: 100%;
|
|
69
|
+
background-image: css-var(root-bg-img);
|
|
70
|
+
background-size: css-var(root-bg-s);
|
|
71
|
+
background-position: css-var(root-bg-pos);
|
|
72
|
+
filter: css-var(root-bg-filter);
|
|
73
|
+
z-index: -1;
|
|
74
|
+
}
|
|
75
|
+
}
|
package/src/global/index.scss
CHANGED
package/src/global/mask.scss
CHANGED
|
@@ -7,7 +7,17 @@
|
|
|
7
7
|
/// Imports
|
|
8
8
|
@use '../util' as *;
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
#{class(sr-only)} {
|
|
11
|
+
position: absolute !important;
|
|
12
|
+
width: 1px !important;
|
|
13
|
+
height: 1px !important;
|
|
14
|
+
padding: 0 !important;
|
|
15
|
+
margin: -1px !important;
|
|
16
|
+
overflow: hidden !important;
|
|
17
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
18
|
+
border: 0 !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
11
21
|
#{class(circle)} {
|
|
12
22
|
border-radius: 50%;
|
|
13
23
|
overflow: hidden;
|
|
@@ -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,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
|
+
}
|