@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
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/// toggle.scss - Toggle styles
|
|
2
|
+
/// @author App Art Mint LLC
|
|
3
|
+
///
|
|
4
|
+
/// @group Input
|
|
5
|
+
@charset 'utf-8';
|
|
6
|
+
|
|
7
|
+
/// Imports
|
|
8
|
+
@use '../../../util/break' as *;
|
|
9
|
+
@use '../../../util/selector' as *;
|
|
2
10
|
|
|
3
11
|
:root {
|
|
4
12
|
@include css-var(check-s, 1);
|
|
@@ -7,9 +15,28 @@
|
|
|
7
15
|
@include css-var(check-bw, 0.125rem);
|
|
8
16
|
@include css-var(check-fs, 0.5rem);
|
|
9
17
|
@include css-var-ref(check-br, br);
|
|
18
|
+
@include css-var-ref(check-bc, c-brand-2);
|
|
19
|
+
@include css-var-ref(check-bg, c-brand-5);
|
|
10
20
|
}
|
|
11
21
|
|
|
12
22
|
#{class(toggle)} {
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
gap: 1rem;
|
|
26
|
+
width: fit-content;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
|
|
29
|
+
div {
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
align-items: center;
|
|
33
|
+
gap: 0.5rem;
|
|
34
|
+
|
|
35
|
+
@include break(xs) {
|
|
36
|
+
flex-direction: row;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
13
40
|
@for $i from 1 through 10 {
|
|
14
41
|
&#{class(#{$i})} {
|
|
15
42
|
@include css-var(check-s, #{$i});
|
|
@@ -18,29 +45,62 @@
|
|
|
18
45
|
}
|
|
19
46
|
|
|
20
47
|
#{class(check)} {
|
|
48
|
+
position: relative;
|
|
49
|
+
display: inline-block;
|
|
50
|
+
flex-shrink: 0;
|
|
21
51
|
height: calc((css-var(check-h) + css-var(check-bw) * 2) * css-var(check-s));
|
|
22
52
|
width: calc((css-var(check-h) - css-var(check-p) + css-var(check-bw)) * css-var(check-s) * 2);
|
|
23
|
-
border: calc(css-var(check-bw) * css-var(check-s)) solid css-var(
|
|
53
|
+
border: calc(css-var(check-bw) * css-var(check-s)) solid css-var(check-bc);
|
|
24
54
|
border-radius: calc(css-var(check-br) * css-var(check-s));
|
|
55
|
+
background-color: css-var(check-bg);
|
|
56
|
+
cursor: pointer;
|
|
25
57
|
|
|
26
58
|
[type="checkbox"] {
|
|
59
|
+
display: none;
|
|
27
60
|
&:checked {
|
|
28
61
|
& + span {
|
|
29
62
|
left: calc(100% - (css-var(check-h) - css-var(check-p)) * css-var(check-s));
|
|
63
|
+
background-color: css-var(check-bc);
|
|
64
|
+
filter: grayscale(0);
|
|
65
|
+
|
|
66
|
+
i {
|
|
67
|
+
opacity: 0;
|
|
68
|
+
|
|
69
|
+
&:first-child {
|
|
70
|
+
opacity: 1;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
30
73
|
}
|
|
31
74
|
}
|
|
32
75
|
|
|
33
76
|
& + span {
|
|
34
77
|
$handle-size: calc((css-var(check-h) - css-var(check-p) * 2) * css-var(check-s));
|
|
78
|
+
position: relative;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
position: absolute;
|
|
35
83
|
top: calc(css-var(check-p) * css-var(check-s));
|
|
36
84
|
left: calc(css-var(check-p) * css-var(check-s));
|
|
37
85
|
transform: translateX(0);
|
|
38
86
|
width: $handle-size;
|
|
39
87
|
height: $handle-size;
|
|
40
88
|
border-radius: calc(css-var(check-br) * css-var(check-s));
|
|
89
|
+
filter: grayscale(1);
|
|
90
|
+
transition: filter 300ms, background-color 300ms, left 300ms;
|
|
41
91
|
|
|
42
92
|
i {
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: 50%;
|
|
95
|
+
left: 50%;
|
|
96
|
+
transform: translate(-50%, -50%);
|
|
97
|
+
color: css-var(back);
|
|
43
98
|
font-size: calc(css-var(check-fs) * css-var(check-s));
|
|
99
|
+
transition: opacity delay(default);
|
|
100
|
+
|
|
101
|
+
&:first-child {
|
|
102
|
+
opacity: 0;
|
|
103
|
+
}
|
|
44
104
|
}
|
|
45
105
|
}
|
|
46
106
|
}
|
|
@@ -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
|
+
}
|