@appartmint/mint 0.10.2 → 0.10.3
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/css/mint.css +144 -26
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/models/item.d.ts +2 -0
- package/dist/js/imports/models/item.d.ts.map +1 -1
- package/dist/js/imports/util/icon.d.ts.map +1 -1
- package/dist/js/index.js +7 -0
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_buttons.scss +42 -14
- package/src/scss/imports/components/_cards.scss +142 -141
- package/src/scss/imports/components/_image.scss +3 -7
- package/src/scss/imports/global/_animations.scss +0 -33
- package/src/scss/imports/global/_themes.scss +56 -9
- package/src/scss/imports/util/_util.scss +475 -362
- package/src/scss/imports/util/_vars.scss +8 -2
package/dist/css/mint.css
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
z-index: -1;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
.mint-btn,
|
|
14
|
+
.mint-pill,
|
|
15
|
+
.mint-btn-icon {
|
|
16
|
+
text-decoration: none;
|
|
17
|
+
text-overflow: ellipsis;
|
|
18
|
+
white-space: nowrap;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
transition: color var(--mint-delay-default), background-color var(--mint-delay-default), border-color var(--mint-delay-default);
|
|
21
|
+
}
|
|
22
|
+
|
|
13
23
|
.mint-btn,
|
|
14
24
|
.mint-pill {
|
|
15
25
|
display: inline-block;
|
|
@@ -18,11 +28,6 @@
|
|
|
18
28
|
background: var(--mint-brand-5);
|
|
19
29
|
border: 0.125rem solid var(--mint-brand-3);
|
|
20
30
|
text-align: center;
|
|
21
|
-
text-decoration: none;
|
|
22
|
-
text-overflow: ellipsis;
|
|
23
|
-
white-space: nowrap;
|
|
24
|
-
overflow: hidden;
|
|
25
|
-
transition: color var(--mint-delay-default), background-color var(--mint-delay-default), border-color var(--mint-delay-default);
|
|
26
31
|
}
|
|
27
32
|
@media (min-width: 480px) {
|
|
28
33
|
.mint-btn,
|
|
@@ -74,6 +79,32 @@
|
|
|
74
79
|
.mint-btn {
|
|
75
80
|
padding: 0.5rem 1.75rem;
|
|
76
81
|
}
|
|
82
|
+
.mint-btn-icon {
|
|
83
|
+
display: block;
|
|
84
|
+
text-align: center;
|
|
85
|
+
}
|
|
86
|
+
.mint-btn-icon:hover i {
|
|
87
|
+
color: var(--mint-accent-2);
|
|
88
|
+
}
|
|
89
|
+
.mint-btn-icon:focus i {
|
|
90
|
+
color: var(--mint-accent-2);
|
|
91
|
+
}
|
|
92
|
+
.mint-btn-icon:active i, .mint-btn-icon.mint-active i {
|
|
93
|
+
color: var(--mint-accent-2);
|
|
94
|
+
}
|
|
95
|
+
@media (min-width: 480px) {
|
|
96
|
+
.mint-btn-icon {
|
|
97
|
+
display: inline-block;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
.mint-btn-icon i {
|
|
101
|
+
margin: 0 !important;
|
|
102
|
+
color: var(--mint-brand-3);
|
|
103
|
+
font-size: 4rem;
|
|
104
|
+
}
|
|
105
|
+
.mint-btn-icon i::before {
|
|
106
|
+
transition: color var(--mint-delay-default);
|
|
107
|
+
}
|
|
77
108
|
|
|
78
109
|
.mint-pill {
|
|
79
110
|
min-width: 5rem;
|
|
@@ -213,6 +244,9 @@ p .mint-pill {
|
|
|
213
244
|
display: flex;
|
|
214
245
|
align-items: center;
|
|
215
246
|
justify-content: flex-start;
|
|
247
|
+
height: fit-content;
|
|
248
|
+
}
|
|
249
|
+
.mint-card .mint-title:only-child {
|
|
216
250
|
height: 100%;
|
|
217
251
|
}
|
|
218
252
|
.mint-card .mint-title > .mint-image, .mint-card .mint-title > mint-image {
|
|
@@ -447,8 +481,8 @@ app-footer::before {
|
|
|
447
481
|
left: 0;
|
|
448
482
|
width: 100%;
|
|
449
483
|
padding: 0 0.5rem 0.5rem 0.5rem;
|
|
450
|
-
background:
|
|
451
|
-
box-shadow: 0 0 0.5rem 0.5rem
|
|
484
|
+
background: var(--mint-glow-2);
|
|
485
|
+
box-shadow: 0 0 0.5rem 0.5rem var(--mint-glow-2);
|
|
452
486
|
text-align: center;
|
|
453
487
|
}
|
|
454
488
|
.mint-image img {
|
|
@@ -955,32 +989,38 @@ p {
|
|
|
955
989
|
line-height: 1.75;
|
|
956
990
|
}
|
|
957
991
|
|
|
958
|
-
h1,
|
|
992
|
+
h1,
|
|
993
|
+
.mint-h1 {
|
|
959
994
|
font-family: serif, -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";
|
|
960
995
|
line-height: 1;
|
|
961
996
|
}
|
|
962
997
|
|
|
963
|
-
h2,
|
|
998
|
+
h2,
|
|
999
|
+
.mint-h2 {
|
|
964
1000
|
font-family: serif, -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";
|
|
965
1001
|
line-height: 1;
|
|
966
1002
|
}
|
|
967
1003
|
|
|
968
|
-
h3,
|
|
1004
|
+
h3,
|
|
1005
|
+
.mint-h3 {
|
|
969
1006
|
font-family: serif, -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";
|
|
970
1007
|
line-height: 1;
|
|
971
1008
|
}
|
|
972
1009
|
|
|
973
|
-
h4,
|
|
1010
|
+
h4,
|
|
1011
|
+
.mint-h4 {
|
|
974
1012
|
font-family: serif, -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";
|
|
975
1013
|
line-height: 1;
|
|
976
1014
|
}
|
|
977
1015
|
|
|
978
|
-
h5,
|
|
1016
|
+
h5,
|
|
1017
|
+
.mint-h5 {
|
|
979
1018
|
font-family: serif, -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";
|
|
980
1019
|
line-height: 1;
|
|
981
1020
|
}
|
|
982
1021
|
|
|
983
|
-
h6,
|
|
1022
|
+
h6,
|
|
1023
|
+
.mint-h6 {
|
|
984
1024
|
font-family: serif, -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";
|
|
985
1025
|
line-height: 1;
|
|
986
1026
|
}
|
|
@@ -1060,9 +1100,12 @@ p, .mint-p {
|
|
|
1060
1100
|
--mint-ethereum: #3C3C3D;
|
|
1061
1101
|
--mint-venmo: #008CFF;
|
|
1062
1102
|
--mint-facebook: #3b5998;
|
|
1103
|
+
--mint-twitter: #1da1f2;
|
|
1063
1104
|
--mint-youtube: #F00;
|
|
1064
|
-
--mint-
|
|
1105
|
+
--mint-apple: #DDD;
|
|
1065
1106
|
--mint-spotify: #84bd00;
|
|
1107
|
+
--mint-soundcloud: #f26f23;
|
|
1108
|
+
--mint-bandcamp: #629aa9;
|
|
1066
1109
|
--mint-amazon-0: #F90;
|
|
1067
1110
|
--mint-amazon-1: #146eb4;
|
|
1068
1111
|
--mint-napster-0: #2ca6de;
|
|
@@ -1179,17 +1222,56 @@ p, .mint-p {
|
|
|
1179
1222
|
a {
|
|
1180
1223
|
color: var(--mint-brand);
|
|
1181
1224
|
}
|
|
1225
|
+
a .fa-instagram {
|
|
1226
|
+
position: relative;
|
|
1227
|
+
}
|
|
1228
|
+
a .fa-instagram::after {
|
|
1229
|
+
content: "\f16d";
|
|
1230
|
+
position: absolute;
|
|
1231
|
+
top: 0;
|
|
1232
|
+
left: 0;
|
|
1233
|
+
opacity: 0;
|
|
1234
|
+
transition: opacity var(--mint-delay-default);
|
|
1235
|
+
color: var(--mint-instagram-0);
|
|
1236
|
+
}
|
|
1237
|
+
@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
|
|
1238
|
+
a .fa-instagram::after {
|
|
1239
|
+
background: var(--mint-instagram-0);
|
|
1240
|
+
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
|
|
1241
|
+
background-clip: text;
|
|
1242
|
+
-webkit-background-clip: text;
|
|
1243
|
+
-webkit-text-fill-color: transparent;
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1182
1246
|
a:hover {
|
|
1183
1247
|
color: var(--mint-accent-0);
|
|
1184
1248
|
}
|
|
1185
|
-
a:hover .fa-
|
|
1186
|
-
color: var(--mint-
|
|
1249
|
+
a:hover .fa-facebook, a:hover .fa-square-facebook {
|
|
1250
|
+
color: var(--mint-facebook);
|
|
1251
|
+
}
|
|
1252
|
+
a:hover .fa-instagram::after {
|
|
1253
|
+
opacity: 1;
|
|
1254
|
+
}
|
|
1255
|
+
a:hover .fa-twitter {
|
|
1256
|
+
color: var(--mint-twitter);
|
|
1187
1257
|
}
|
|
1188
1258
|
a:hover .fa-youtube {
|
|
1189
1259
|
color: var(--mint-youtube);
|
|
1190
1260
|
}
|
|
1191
|
-
a:hover .fa-
|
|
1192
|
-
color: var(--mint-
|
|
1261
|
+
a:hover .fa-spotify {
|
|
1262
|
+
color: var(--mint-spotify);
|
|
1263
|
+
}
|
|
1264
|
+
a:hover .fa-apple {
|
|
1265
|
+
color: var(--mint-apple);
|
|
1266
|
+
}
|
|
1267
|
+
a:hover .fa-soundcloud {
|
|
1268
|
+
color: var(--mint-soundcloud);
|
|
1269
|
+
}
|
|
1270
|
+
a:hover .fa-bandcamp {
|
|
1271
|
+
color: var(--mint-bandcamp);
|
|
1272
|
+
}
|
|
1273
|
+
a:hover .fa-github {
|
|
1274
|
+
color: var(--mint-white-1);
|
|
1193
1275
|
}
|
|
1194
1276
|
a:hover .fa-bitcoin {
|
|
1195
1277
|
color: var(--mint-bitcoin);
|
|
@@ -1203,14 +1285,32 @@ a:hover .fa-vimeo {
|
|
|
1203
1285
|
a:focus {
|
|
1204
1286
|
color: var(--mint-accent-0);
|
|
1205
1287
|
}
|
|
1206
|
-
a:focus .fa-
|
|
1207
|
-
color: var(--mint-
|
|
1288
|
+
a:focus .fa-facebook, a:focus .fa-square-facebook {
|
|
1289
|
+
color: var(--mint-facebook);
|
|
1290
|
+
}
|
|
1291
|
+
a:focus .fa-instagram::after {
|
|
1292
|
+
opacity: 1;
|
|
1293
|
+
}
|
|
1294
|
+
a:focus .fa-twitter {
|
|
1295
|
+
color: var(--mint-twitter);
|
|
1208
1296
|
}
|
|
1209
1297
|
a:focus .fa-youtube {
|
|
1210
1298
|
color: var(--mint-youtube);
|
|
1211
1299
|
}
|
|
1212
|
-
a:focus .fa-
|
|
1213
|
-
color: var(--mint-
|
|
1300
|
+
a:focus .fa-spotify {
|
|
1301
|
+
color: var(--mint-spotify);
|
|
1302
|
+
}
|
|
1303
|
+
a:focus .fa-apple {
|
|
1304
|
+
color: var(--mint-apple);
|
|
1305
|
+
}
|
|
1306
|
+
a:focus .fa-soundcloud {
|
|
1307
|
+
color: var(--mint-soundcloud);
|
|
1308
|
+
}
|
|
1309
|
+
a:focus .fa-bandcamp {
|
|
1310
|
+
color: var(--mint-bandcamp);
|
|
1311
|
+
}
|
|
1312
|
+
a:focus .fa-github {
|
|
1313
|
+
color: var(--mint-white-1);
|
|
1214
1314
|
}
|
|
1215
1315
|
a:focus .fa-bitcoin {
|
|
1216
1316
|
color: var(--mint-bitcoin);
|
|
@@ -1224,14 +1324,32 @@ a:focus .fa-vimeo {
|
|
|
1224
1324
|
a:active, a.mint-active {
|
|
1225
1325
|
color: var(--mint-accent-0);
|
|
1226
1326
|
}
|
|
1227
|
-
a:active .fa-
|
|
1228
|
-
color: var(--mint-
|
|
1327
|
+
a:active .fa-facebook, a:active .fa-square-facebook, a.mint-active .fa-facebook, a.mint-active .fa-square-facebook {
|
|
1328
|
+
color: var(--mint-facebook);
|
|
1329
|
+
}
|
|
1330
|
+
a:active .fa-instagram::after, a.mint-active .fa-instagram::after {
|
|
1331
|
+
opacity: 1;
|
|
1332
|
+
}
|
|
1333
|
+
a:active .fa-twitter, a.mint-active .fa-twitter {
|
|
1334
|
+
color: var(--mint-twitter);
|
|
1229
1335
|
}
|
|
1230
1336
|
a:active .fa-youtube, a.mint-active .fa-youtube {
|
|
1231
1337
|
color: var(--mint-youtube);
|
|
1232
1338
|
}
|
|
1233
|
-
a:active .fa-
|
|
1234
|
-
color: var(--mint-
|
|
1339
|
+
a:active .fa-spotify, a.mint-active .fa-spotify {
|
|
1340
|
+
color: var(--mint-spotify);
|
|
1341
|
+
}
|
|
1342
|
+
a:active .fa-apple, a.mint-active .fa-apple {
|
|
1343
|
+
color: var(--mint-apple);
|
|
1344
|
+
}
|
|
1345
|
+
a:active .fa-soundcloud, a.mint-active .fa-soundcloud {
|
|
1346
|
+
color: var(--mint-soundcloud);
|
|
1347
|
+
}
|
|
1348
|
+
a:active .fa-bandcamp, a.mint-active .fa-bandcamp {
|
|
1349
|
+
color: var(--mint-bandcamp);
|
|
1350
|
+
}
|
|
1351
|
+
a:active .fa-github, a.mint-active .fa-github {
|
|
1352
|
+
color: var(--mint-white-1);
|
|
1235
1353
|
}
|
|
1236
1354
|
a:active .fa-bitcoin, a.mint-active .fa-bitcoin {
|
|
1237
1355
|
color: var(--mint-bitcoin);
|