lism-css 0.0.1 → 0.0.2
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/README.md +52 -0
- package/dist/_virtual/jsx-runtime.js +5 -0
- package/dist/_virtual/jsx-runtime2.js +4 -0
- package/dist/_virtual/react-jsx-runtime.development.js +4 -0
- package/dist/_virtual/react-jsx-runtime.production.min.js +4 -0
- package/dist/components/Accordion/AccIcon.js +10 -0
- package/dist/components/Accordion/getProps.js +29 -0
- package/dist/components/Accordion/index.js +6 -0
- package/dist/components/Accordion/index2.js +32 -0
- package/dist/components/Accordion/setAccordion.js +37 -0
- package/dist/components/Accordion/style.css +1 -0
- package/dist/components/Box/getProps.js +7 -0
- package/dist/components/Box/index.js +9 -0
- package/dist/components/Center/index.js +8 -0
- package/dist/components/Columns/getProps.js +6 -0
- package/dist/components/Columns/index.js +9 -0
- package/dist/components/Container/index.js +9 -0
- package/dist/components/Decorator/getProps.js +15 -0
- package/dist/components/Decorator/index.js +9 -0
- package/dist/components/Divider/getProps.js +11 -0
- package/dist/components/Divider/index.js +9 -0
- package/dist/components/Dummy/getContent.js +9 -0
- package/dist/components/Dummy/index.js +17 -0
- package/dist/components/Dummy/texts.js +24 -0
- package/dist/components/Flex/Cluster.js +8 -0
- package/dist/components/Flex/FlexItem.js +9 -0
- package/dist/components/Flex/getProps.js +13 -0
- package/dist/components/Flex/index.js +9 -0
- package/dist/components/Frame/getProps.js +7 -0
- package/dist/components/Frame/index.js +9 -0
- package/dist/components/Grid/GridItem.js +10 -0
- package/dist/components/Grid/getProps.js +28 -0
- package/dist/components/Grid/index.js +9 -0
- package/dist/components/Icon/SVG.js +29 -0
- package/dist/components/Icon/getProps.js +34 -0
- package/dist/components/Icon/index.js +11 -0
- package/dist/components/Icon/presets.js +193 -0
- package/dist/components/Layer/getProps.js +9 -0
- package/dist/components/Layer/index.js +10 -0
- package/dist/components/LinkBox/index.js +9 -0
- package/dist/components/Lism/Link.js +8 -0
- package/dist/components/Lism/Media.js +10 -0
- package/dist/components/Lism/Text.js +8 -0
- package/dist/components/Lism/index.js +9 -0
- package/dist/components/Modal/Body.js +10 -0
- package/dist/components/Modal/CloseIconBtn.js +19 -0
- package/dist/components/Modal/Footer.js +10 -0
- package/dist/components/Modal/Header.js +10 -0
- package/dist/components/Modal/Inner.js +9 -0
- package/dist/components/Modal/getProps.js +19 -0
- package/dist/components/Modal/index.js +10 -0
- package/dist/components/Modal/index2.js +17 -0
- package/dist/components/Modal/setModal.js +37 -0
- package/dist/components/Modal/style.css +1 -0
- package/dist/components/Spacer/getProps.js +21 -0
- package/dist/components/Spacer/index.js +9 -0
- package/dist/components/Stack/index.js +8 -0
- package/dist/components/Tabs/Tab.js +22 -0
- package/dist/components/Tabs/TabItem.js +7 -0
- package/dist/components/Tabs/TabList.js +8 -0
- package/dist/components/Tabs/TabPanel.js +19 -0
- package/dist/components/Tabs/getProps.js +17 -0
- package/dist/components/Tabs/index.js +9 -0
- package/dist/components/Tabs/index2.js +55 -0
- package/dist/components/Tabs/setEvent.js +29 -0
- package/dist/components/Tabs/style.css +1 -0
- package/dist/components/WithSide/getProps.js +14 -0
- package/dist/components/WithSide/index.js +9 -0
- package/dist/components/getFilterProps.js +23 -0
- package/dist/components/getInsetProps.js +8 -0
- package/dist/components/getMediaProps.js +14 -0
- package/dist/components/getTransformProps.js +8 -0
- package/dist/config/prop_list.js +395 -0
- package/dist/config/tokens.js +67 -0
- package/dist/config.js +9 -0
- package/dist/css/all.css +1 -0
- package/dist/css/all_no_layer.css +1 -0
- package/dist/css/base.css +1 -0
- package/dist/css/dynamic.css +1 -0
- package/dist/css/layout.css +1 -0
- package/dist/css/props.css +1 -0
- package/dist/css/reset.css +1 -0
- package/dist/css/state.css +1 -0
- package/dist/css/utility.css +1 -0
- package/dist/css/with_layer.css +1 -0
- package/dist/index.js +54 -0
- package/dist/lib/getBpData.js +13 -0
- package/dist/lib/getLismProps.js +239 -0
- package/dist/lib/getMaybeCssVar.js +61 -0
- package/dist/lib/getMaybeUtilValue.js +6 -0
- package/dist/lib/helper/atts.js +11 -0
- package/dist/lib/helper/filterEmptyObj.js +9 -0
- package/dist/lib/helper/hasKeys.js +6 -0
- package/dist/lib/helper/isEmptyObj.js +6 -0
- package/dist/lib/helper/isNumStr.js +6 -0
- package/dist/lib/helper/splitWithComma.js +6 -0
- package/dist/lib/isPresetValue.js +6 -0
- package/dist/lib/isTokenValue.js +9 -0
- package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.development.js +604 -0
- package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js +28 -0
- package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js +10 -0
- package/dist/scripts/accordion.js +4 -0
- package/dist/scripts/modal.js +4 -0
- package/dist/scripts/tabs.js +6 -0
- package/package.json +24 -22
- package/src/scss/__memo/_lh-auto-all.scss +46 -0
- package/src/scss/__memo/_lh-auto-h.scss +50 -0
- package/src/scss/__memo/_lh-manual.scss +58 -0
- package/src/scss/_auto_output.scss +194 -0
- package/src/scss/_mixin.scss +38 -0
- package/src/scss/_props.scss +771 -0
- package/src/scss/_query.scss +40 -0
- package/src/scss/_setting.scss +22 -0
- package/src/scss/all.scss +10 -0
- package/src/scss/all_no_layer.scss +26 -0
- package/src/scss/base/_dom.scss +140 -0
- package/src/scss/base/_tokens.scss +307 -0
- package/src/scss/base/index.scss +70 -0
- package/src/scss/dynamic/index.scss +4 -0
- package/src/scss/layout/__switcher.scss +11 -0
- package/src/scss/layout/_center.scss +5 -0
- package/src/scss/layout/_columns.scss +18 -0
- package/src/scss/layout/_divider.scss +6 -0
- package/src/scss/layout/_flex.scss +12 -0
- package/src/scss/layout/_frame.scss +13 -0
- package/src/scss/layout/_grid.scss +16 -0
- package/src/scss/layout/_icon.scss +19 -0
- package/src/scss/layout/_spacer.scss +3 -0
- package/src/scss/layout/_stack.scss +4 -0
- package/src/scss/layout/_withSide.scss +20 -0
- package/src/scss/layout/index.scss +12 -0
- package/src/scss/props/__/__aspect.bkup.scss +36 -0
- package/src/scss/props/__/__border.bkup.scss +197 -0
- package/src/scss/props/__/__color.bkup.scss +67 -0
- package/src/scss/props/__/__display.bukup.scss +11 -0
- package/src/scss/props/__/__flex-props.bkup.scss +66 -0
- package/src/scss/props/__/__gap.bkup.scss +18 -0
- package/src/scss/props/__/__grid-props.bkup.scss +158 -0
- package/src/scss/props/__/__margin.bkup.scss +92 -0
- package/src/scss/props/__/__padding.bkup.scss +93 -0
- package/src/scss/props/__/__place.bkup.scss +74 -0
- package/src/scss/props/__/__radius.bkup.scss +27 -0
- package/src/scss/props/__/__sizing.bkup.scss +45 -0
- package/src/scss/props/__/__typography.bkup.scss +146 -0
- package/src/scss/props/__memo.scss +15 -0
- package/src/scss/props/_border.scss +67 -0
- package/src/scss/props/_color.scss +16 -0
- package/src/scss/props/_hover.scss +73 -0
- package/src/scss/props/_transition.scss +20 -0
- package/src/scss/props/index.scss +12 -0
- package/src/scss/reset.scss +99 -0
- package/src/scss/state/__container.bkup.scss +145 -0
- package/src/scss/state/__flow.bkup.scss +52 -0
- package/src/scss/state/_container.scss +45 -0
- package/src/scss/state/_flow.scss +45 -0
- package/src/scss/state/_gutter.scss +3 -0
- package/src/scss/state/_has-divider.scss +30 -0
- package/src/scss/state/_layer.scss +7 -0
- package/src/scss/state/_linkbox.scss +18 -0
- package/src/scss/state/_size.scss +60 -0
- package/src/scss/state/index.scss +8 -0
- package/src/scss/utility/index.scss +76 -0
- package/src/scss/with_layer.scss +28 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
// @use '../query' as query;
|
|
2
|
+
@use '../setting' as setting;
|
|
3
|
+
|
|
4
|
+
/* stylelint-disable */
|
|
5
|
+
|
|
6
|
+
// --------------------
|
|
7
|
+
|
|
8
|
+
// [class*="..."] にする...?
|
|
9
|
+
// .-hoge--m: → -m: にひっかかるので注意
|
|
10
|
+
|
|
11
|
+
// all
|
|
12
|
+
.-m\: { margin: var(--m) !important }
|
|
13
|
+
.-m\:0{ margin: 0 !important }
|
|
14
|
+
.-m\:a{ margin: auto !important }
|
|
15
|
+
|
|
16
|
+
// x, y
|
|
17
|
+
.-mx\: { margin-inline: var(--mx) !important }
|
|
18
|
+
.-my\: { margin-block: var(--my) !important }
|
|
19
|
+
.-mx\:0{margin-inline: 0 !important}
|
|
20
|
+
.-my\:0{margin-block: 0 !important}
|
|
21
|
+
.-mx\:a{margin-inline: auto !important}
|
|
22
|
+
.-my\:a{margin-block: auto !important}
|
|
23
|
+
|
|
24
|
+
// sides
|
|
25
|
+
.-mt\: { margin-top: var(--mt) !important }
|
|
26
|
+
.-mb\: { margin-bottom: var(--mb) !important }
|
|
27
|
+
.-ml\: { margin-left: var(--ml) !important }
|
|
28
|
+
.-mr\: { margin-right: var(--mr) !important }
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
.-mis\: { margin-inline-start: var(--mis) !important}
|
|
32
|
+
[class*="-mbs:"] { margin-block-start: var(--mbs) !important}
|
|
33
|
+
|
|
34
|
+
.-mt\:a{margin-top: auto !important}
|
|
35
|
+
.-mb\:a{margin-bottom: auto !important}
|
|
36
|
+
.-ml\:a{margin-left: auto !important}
|
|
37
|
+
.-mr\:a{margin-right: auto !important}
|
|
38
|
+
.-mis\:a{margin-inline-start: auto;}
|
|
39
|
+
.-mbs\:a{--mbs: auto;}
|
|
40
|
+
.-mt\:0{margin-top: 0 !important}
|
|
41
|
+
.-mb\:0{margin-bottom: 0 !important}
|
|
42
|
+
.-ml\:0{margin-left: 0 !important}
|
|
43
|
+
.-mr\:0{margin-right: 0 !important}
|
|
44
|
+
.-mis\:0{margin-inline-start: 0;}
|
|
45
|
+
.-mbs\:0{--mbs: 0;}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@each $s in setting.$util_spaces {
|
|
49
|
+
// .-m\:#{$s} {--m: var(--s--#{$s});}
|
|
50
|
+
// .-mis\:#{$s} { --mis: var(--s--#{$s});}
|
|
51
|
+
|
|
52
|
+
// flowレイアウトで使うので mbs はユーティリティ用意する
|
|
53
|
+
.-mbs\:#{$s} { --mbs: var(--s--#{$s});}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
// @include query.bp-up('sm'){
|
|
58
|
+
// .-m\@sm { margin: var(--m--sm) !important }
|
|
59
|
+
// .-mx\@sm { margin-inline: var(--mx--sm) !important }
|
|
60
|
+
// .-my\@sm { margin-block: var(--my--sm) !important }
|
|
61
|
+
// // .-mt\@sm { margin-top: var(--mt--sm) !important }
|
|
62
|
+
// // .-mr\@sm { margin-right: var(--mr--sm) !important }
|
|
63
|
+
// // .-mb\@sm { margin-bottom: var(--mb--sm) !important }
|
|
64
|
+
// // .-ml\@sm { margin-left: var(--ml--sm) !important }
|
|
65
|
+
// .-mis\@sm { margin-inline-start: var(--mis--sm) !important }
|
|
66
|
+
// .-mbs\@sm { margin-block-start: var(--mbs--sm) !important }
|
|
67
|
+
// }
|
|
68
|
+
|
|
69
|
+
// @include query.bp-up('md'){
|
|
70
|
+
// .-m\@md { margin: var(--m--md) !important }
|
|
71
|
+
// .-mx\@md { margin-inline: var(--mx--md) !important }
|
|
72
|
+
// .-my\@md { margin-block: var(--my--md) !important }
|
|
73
|
+
// // .-mt\@md { margin-top: var(--mt--md) !important }
|
|
74
|
+
// // .-mr\@md { margin-right: var(--mr--md) !important }
|
|
75
|
+
// // .-mb\@md { margin-bottom: var(--mb--md) !important }
|
|
76
|
+
// // .-ml\@md { margin-left: var(--ml--md) !important }
|
|
77
|
+
// .-mis\@md { margin-inline-start: var(--mis--md) !important }
|
|
78
|
+
// .-mbs\@md { margin-block-start: var(--mbs--md) !important }
|
|
79
|
+
// }
|
|
80
|
+
|
|
81
|
+
// @include query.bp-up('lg'){
|
|
82
|
+
// .-m\@lg { margin: var(--m--lg) !important }
|
|
83
|
+
// .-mx\@lg { margin-inline: var(--mx--lg) !important }
|
|
84
|
+
// .-my\@lg { margin-block: var(--my--lg) !important }
|
|
85
|
+
// // .-mt\@lg { margin-top: var(--mt--lg) !important }
|
|
86
|
+
// // .-mr\@lg { margin-right: var(--mr--lg) !important }
|
|
87
|
+
// // .-mb\@lg { margin-bottom: var(--mb--lg) !important }
|
|
88
|
+
// // .-ml\@lg { margin-left: var(--ml--lg) !important }
|
|
89
|
+
// .-mis\@lg { margin-inline-start: var(--mis--lg) !important }
|
|
90
|
+
// .-mbs\@lg { margin-block-start: var(--mbs--lg) !important }
|
|
91
|
+
// }
|
|
92
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// @use '../query' as query;
|
|
2
|
+
@use '../setting' as setting;
|
|
3
|
+
|
|
4
|
+
/* stylelint-disable */
|
|
5
|
+
|
|
6
|
+
// 優先度が 全方向 < x,y < 個別方向 になるように注意。
|
|
7
|
+
|
|
8
|
+
.-p\:box { --p: var(--p--box);}
|
|
9
|
+
.-p\:box\:s { --p: var(--p--box--s);}
|
|
10
|
+
.-p\:box\:l { --p: var(--p--box--l);}
|
|
11
|
+
|
|
12
|
+
// utilあり
|
|
13
|
+
[class*="-p:"] {
|
|
14
|
+
padding: var(--p) !important;
|
|
15
|
+
}
|
|
16
|
+
[class*="-px:"] {
|
|
17
|
+
padding-inline: var(--px) !important;
|
|
18
|
+
}
|
|
19
|
+
[class*="-py:"] {
|
|
20
|
+
padding-block: var(--py) !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.-pt\: { padding-top: var(--pt) !important;}
|
|
24
|
+
.-pb\: { padding-bottom: var(--pb) !important;}
|
|
25
|
+
.-pl\: { padding-left: var(--pl) !important;}
|
|
26
|
+
.-pr\: { padding-right: var(--pr) !important;}
|
|
27
|
+
.-pis\: { padding-inline-start: var(--pis) !important;}
|
|
28
|
+
.-pbs\: { padding-block-start: var(--pbs) !important;}
|
|
29
|
+
// .-pe\: { padding-inline-end: var(--pe) !important;}
|
|
30
|
+
// .-pbe\: { padding-block-end: var(--pbe) !important;}
|
|
31
|
+
|
|
32
|
+
// 0 は全てで用意しておく
|
|
33
|
+
.-p\:0 {--p: 0}
|
|
34
|
+
.-px\:0 {--px: 0}
|
|
35
|
+
.-py\:0 {--py: 0}
|
|
36
|
+
.-pt\:0 { padding-top: 0 !important;}
|
|
37
|
+
.-pb\:0 { padding-bottom: 0 !important;}
|
|
38
|
+
.-pl\:0 { padding-left: 0 !important;}
|
|
39
|
+
.-pr\:0 { padding-right: 0 !important;}
|
|
40
|
+
.-pis\:0 { padding-inline-start: 0 !important;}
|
|
41
|
+
.-pbs\:0 { padding-block-start: 0 !important;}
|
|
42
|
+
|
|
43
|
+
@each $s in setting.$util_spaces {
|
|
44
|
+
.-p\:#{$s} {--p: var(--s--#{$s});}
|
|
45
|
+
.-px\:#{$s} {--px: var(--s--#{$s});}
|
|
46
|
+
.-py\:#{$s} {--py: var(--s--#{$s});}
|
|
47
|
+
// .-pl\:#{$s} {--pl: var(--s--#{$s});}
|
|
48
|
+
// .-pr\:#{$s} {--pr: var(--s--#{$s});}
|
|
49
|
+
// .-pt\:#{$s} {--pt: var(--s--#{$s});}
|
|
50
|
+
// .-pb\:#{$s} {--pb: var(--s--#{$s});}
|
|
51
|
+
}
|
|
52
|
+
@each $em in setting.$util_em_tokens {
|
|
53
|
+
.-p\:em#{$em} {--p: var(--em--#{$em});}
|
|
54
|
+
.-px\:em#{$em} {--px: var(--em--#{$em});}
|
|
55
|
+
.-py\:em#{$em} {--py: var(--em--#{$em});}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
// @include query.bp-up('sm'){
|
|
60
|
+
// .-p\@sm { padding: var(--p--sm) !important;}
|
|
61
|
+
// .-px\@sm { padding-inline: var(--px--sm) !important;}
|
|
62
|
+
// .-py\@sm { padding-block: var(--py--sm) !important;}
|
|
63
|
+
// // .-pt\@sm { padding-top: var(--pt--sm) !important;}
|
|
64
|
+
// // .-pr\@sm { padding-right: var(--pr--sm) !important;}
|
|
65
|
+
// // .-pb\@sm { padding-bottom: var(--pb--sm) !important;}
|
|
66
|
+
// // .-pl\@sm { padding-left: var(--pl--sm) !important;}
|
|
67
|
+
// .-pis\@sm { padding-inline-start: var(--pis--sm) !important;}
|
|
68
|
+
// .-pbs\@sm { padding-block-start: var(--pbs--sm) !important;}
|
|
69
|
+
// }
|
|
70
|
+
|
|
71
|
+
// @include query.bp-up('md'){
|
|
72
|
+
// .-p\@md { padding: var(--p--md) !important;}
|
|
73
|
+
// .-px\@md { padding-inline: var(--px--md) !important;}
|
|
74
|
+
// .-py\@md { padding-block: var(--py--md) !important;}
|
|
75
|
+
// // .-pt\@md { padding-top: var(--pt--md) !important;}
|
|
76
|
+
// // .-pr\@md { padding-right: var(--pr--md) !important;}
|
|
77
|
+
// // .-pb\@md { padding-bottom: var(--pb--md) !important;}
|
|
78
|
+
// // .-pl\@md { padding-left: var(--pl--md) !important;}
|
|
79
|
+
// .-pis\@md { padding-inline-start: var(--pis--md) !important;}
|
|
80
|
+
// .-pbs\@md { padding-block-start: var(--pbs--md) !important;}
|
|
81
|
+
// }
|
|
82
|
+
|
|
83
|
+
// @include query.bp-up('lg'){
|
|
84
|
+
// .-p\@lg { padding: var(--p--lg) !important;}
|
|
85
|
+
// .-px\@lg { padding-inline: var(--px--lg) !important;}
|
|
86
|
+
// .-py\@lg { padding-block: var(--py--lg) !important;}
|
|
87
|
+
// // .-pt\@lg { padding-top: var(--pt--lg) !important;}
|
|
88
|
+
// // .-pr\@lg { padding-right: var(--pr--lg) !important;}
|
|
89
|
+
// // .-pb\@lg { padding-bottom: var(--pb--lg) !important;}
|
|
90
|
+
// // .-pl\@lg { padding-left: var(--pl--lg) !important;}
|
|
91
|
+
// .-pis\@lg { padding-inline-start: var(--pis--lg) !important;}
|
|
92
|
+
// .-pbs\@lg { padding-block-start: var(--pbs--lg) !important;}
|
|
93
|
+
// }
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
// .-pi\:c{place-items: center;}
|
|
4
|
+
// .-pi\:s{place-items: start;}
|
|
5
|
+
// .-pi\:e{place-items: end;}
|
|
6
|
+
// .-pc\:c{place-content: center;}
|
|
7
|
+
// .-pc\:s{place-content: start;}
|
|
8
|
+
// .-pc\:e{place-content: end;}
|
|
9
|
+
// .-ps\:c{place-content: center;}
|
|
10
|
+
// .-ps\:s{place-content: start;}
|
|
11
|
+
// .-ps\:e{place-content: end;}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
// align-items
|
|
15
|
+
// .-ai\:{align-items: var(--ai);}
|
|
16
|
+
.-ai\:c{align-items: center;}
|
|
17
|
+
.-ai\:s{align-items: start;}
|
|
18
|
+
.-ai\:e{align-items: end;}
|
|
19
|
+
.-ai\:fs{align-items: flex-start;}
|
|
20
|
+
.-ai\:fe{align-items: flex-end;}
|
|
21
|
+
.-ai\:str{align-items: stretch;}
|
|
22
|
+
|
|
23
|
+
// justify-items
|
|
24
|
+
// .-ji\:{justify-items: var(--ji);}
|
|
25
|
+
.-ji\:c{justify-items: center;}
|
|
26
|
+
.-ji\:s{justify-items: start;}
|
|
27
|
+
.-ji\:e{justify-items: end;}
|
|
28
|
+
.-ji\:fs{justify-items: flex-start;}
|
|
29
|
+
.-ji\:fe{justify-items: flex-end;}
|
|
30
|
+
.-ji\:str{justify-items: stretch;}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
// justify-content
|
|
34
|
+
// .-jc\:{justify-content: var(--jc);}
|
|
35
|
+
.-jc\:c{justify-content: center;}
|
|
36
|
+
.-jc\:s{justify-content: start;}
|
|
37
|
+
.-jc\:e{justify-content: end;}
|
|
38
|
+
.-jc\:fs{justify-content: flex-start;}
|
|
39
|
+
.-jc\:fe{justify-content: flex-end;}
|
|
40
|
+
.-jc\:sb{justify-content: space-between;}
|
|
41
|
+
|
|
42
|
+
// align-content
|
|
43
|
+
// .-ac\:{align-content: var(--ac);}
|
|
44
|
+
.-ac\:c{align-content: center;}
|
|
45
|
+
.-ac\:s{align-content: start;}
|
|
46
|
+
.-ac\:e{align-content: end;}
|
|
47
|
+
.-ac\:fs{align-content: flex-start;}
|
|
48
|
+
.-ac\:fe{align-content: flex-end;}
|
|
49
|
+
.-ac\:sb{align-content: space-between;}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// self系
|
|
53
|
+
.-aslf\:c{align-self: center;}
|
|
54
|
+
.-aslf\:s{align-self: start;}
|
|
55
|
+
.-aslf\:e{align-self: end;}
|
|
56
|
+
.-aslf\:fs{align-self: flex-start;}
|
|
57
|
+
.-aslf\:fe{align-self: flex-end;}
|
|
58
|
+
// self-start, self-end ?
|
|
59
|
+
|
|
60
|
+
.-jslf\:c{justify-self: center;}
|
|
61
|
+
.-jslf\:s{justify-self: start;}
|
|
62
|
+
.-jslf\:e{justify-self: end;}
|
|
63
|
+
.-jslf\:fs{justify-self: flex-start;}
|
|
64
|
+
.-jslf\:fe{justify-self: flex-end;}
|
|
65
|
+
|
|
66
|
+
// rtl言語でも左右を反転させない時に使える
|
|
67
|
+
// .-ji\:l{justify-items: left;}
|
|
68
|
+
// .-ji\:r{justify-items: right;}
|
|
69
|
+
// .-jc\:l{justify-content: left;}
|
|
70
|
+
// .-jc\:r{justify-content: right;}
|
|
71
|
+
|
|
72
|
+
// ↓ ml:a , mr:a で左右よせはできる
|
|
73
|
+
// .-js\:l{justify-self: left;}
|
|
74
|
+
// .-js\:r{justify-self: right;}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// bdrs は変数管理した方が便利
|
|
5
|
+
[class*="-bdrs:"]{
|
|
6
|
+
border-radius: var(--bdrs);
|
|
7
|
+
}
|
|
8
|
+
.-bdrs\:0{--bdrs: 0;}
|
|
9
|
+
// .-bdrs\:1{--bdrs: 1px;}
|
|
10
|
+
.-bdrs\:xs{--bdrs: var(--radius--xs)}
|
|
11
|
+
.-bdrs\:s{--bdrs: var(--radius--s)}
|
|
12
|
+
.-bdrs\:m{--bdrs: var(--radius--m)}
|
|
13
|
+
.-bdrs\:l{--bdrs: var(--radius--l)}
|
|
14
|
+
.-bdrs\:xl{--bdrs: var(--radius--xl)}
|
|
15
|
+
.-bdrs\:full{--bdrs: var(--radius--full)}
|
|
16
|
+
|
|
17
|
+
// .-bdrs\:l→ leftと勘違いしていまいそう。(bdrsは left 単体はないよ)
|
|
18
|
+
|
|
19
|
+
// .-bdtlrs\:0 {border-top-left-radius: 0;}
|
|
20
|
+
// .-bdtrrs\:0 {border-top-right-radius: 0;}
|
|
21
|
+
// .-bdbrrs\:0 {border-bottom-right-radius: 0;}
|
|
22
|
+
// .-bdblrs\:0 {border-bottom-left-radius: 0;}
|
|
23
|
+
|
|
24
|
+
.-bdssrs\:0 {border-start-start-radius: 0;}
|
|
25
|
+
.-bdsers\:0 {border-start-end-radius: 0;}
|
|
26
|
+
.-bdeers\:0 {border-end-end-radius: 0;}
|
|
27
|
+
.-bdesrs\:0 {border-end-start-radius: 0;}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// @use '../query' as query;
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
|
|
4
|
+
// [class*="-xxx:"] を使うと ユーティリティに important 不要になる
|
|
5
|
+
|
|
6
|
+
// .-w\:,
|
|
7
|
+
.-w\: { width: var(--w) }
|
|
8
|
+
.-w\:fit { width: fit-content}
|
|
9
|
+
.-w\:100 { width: 100% }
|
|
10
|
+
// .-w\:75 { width: 75% }
|
|
11
|
+
// .-w\:50 { width: 50% }
|
|
12
|
+
// .-w\:25 { width: 25% }
|
|
13
|
+
|
|
14
|
+
// .-h\:,
|
|
15
|
+
.-h\: { height: var(--h) }
|
|
16
|
+
.-h\:100 { height: 100% }
|
|
17
|
+
.-h\:fit { height: fit-content }
|
|
18
|
+
// .-h\:un { height: unset}
|
|
19
|
+
.-h\:screen { height: 100vh; height: 100dvh; }
|
|
20
|
+
// .-h\:screen { height: calc(100vw - var(--sbar)) }
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
// max-is, max-w, max-h ?
|
|
24
|
+
.-maxW\: { max-width: var(--maxW) }
|
|
25
|
+
.-maxW\:100 {max-width: 100%;}
|
|
26
|
+
// .-maxW\:un {max-width: unset;}
|
|
27
|
+
|
|
28
|
+
.-maxH\: { max-height: var(--maxH) }
|
|
29
|
+
.-maxH\:100 {max-height: 100%;}
|
|
30
|
+
// .-maxH\:un {max-height: unset;}
|
|
31
|
+
|
|
32
|
+
// min
|
|
33
|
+
.-minW\: { min-width: var(--minW) }
|
|
34
|
+
.-minW\:100 {min-width: 100%;}
|
|
35
|
+
|
|
36
|
+
.-minH\: { min-height: var(--minH) }
|
|
37
|
+
.-minH\:100 {min-height: 100%;}
|
|
38
|
+
|
|
39
|
+
// .-minW\:un {min-width: unset;}
|
|
40
|
+
// .-minH\:un {min-height: unset;}
|
|
41
|
+
|
|
42
|
+
// コンテンツサイズ用
|
|
43
|
+
// .-maxIs\:s{ max-inline-size: var(--size--s) }
|
|
44
|
+
// .-maxIs\:m{ max-inline-size: var(--size--m) }
|
|
45
|
+
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
|
|
3
|
+
// [class*="-lh:"]{
|
|
4
|
+
// line-height: var(--lh);
|
|
5
|
+
// }
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------------------------------
|
|
8
|
+
font
|
|
9
|
+
------------------------------------------------------------ */
|
|
10
|
+
.-f\:i{font: inherit;}
|
|
11
|
+
|
|
12
|
+
/* ------------------------------------------------------------
|
|
13
|
+
font-size
|
|
14
|
+
------------------------------------------------------------ */
|
|
15
|
+
|
|
16
|
+
// .-fz\:
|
|
17
|
+
[class*='-fz:'] { font-size: var(--fz) !important}
|
|
18
|
+
|
|
19
|
+
.-fz\:r { font-size: 1rem }
|
|
20
|
+
.-fz\:2xs { --fz: var(--fz--2xs) }
|
|
21
|
+
.-fz\:xs { --fz: var(--fz--xs) }
|
|
22
|
+
.-fz\:s { --fz: var(--fz--s) }
|
|
23
|
+
.-fz\:m { --fz: var(--fz--m) }
|
|
24
|
+
.-fz\:l { --fz: var(--fz--l) }
|
|
25
|
+
.-fz\:xl { --fz: var(--fz--xl) }
|
|
26
|
+
.-fz\:2xl { --fz: var(--fz--2xl) }
|
|
27
|
+
.-fz\:3xl { --fz: var(--fz--3xl) }
|
|
28
|
+
.-fz\:4xl { --fz: var(--fz--4xl) }
|
|
29
|
+
.-fz\:5xl { --fz: var(--fz--5xl) }
|
|
30
|
+
|
|
31
|
+
// 流体サイズ ?
|
|
32
|
+
// .-fz\:fluid {
|
|
33
|
+
// --fz: var(--fz-fluid);
|
|
34
|
+
// }
|
|
35
|
+
|
|
36
|
+
// .-fz\:fluid\:s {
|
|
37
|
+
// --fz: var(--fz-fluid--s);
|
|
38
|
+
// }
|
|
39
|
+
// .-fz\:fluid\:l {
|
|
40
|
+
// --fz: var(--fz-fluid--l);
|
|
41
|
+
// }
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
/* ------------------------------------------------------------
|
|
45
|
+
line-height
|
|
46
|
+
------------------------------------------------------------ */
|
|
47
|
+
|
|
48
|
+
// line-height
|
|
49
|
+
|
|
50
|
+
// [class*='-lh:'] { line-height: var(--lh) }
|
|
51
|
+
.-lh\:1 { line-height: 1 }
|
|
52
|
+
.-lh\:root { line-height: var(--lh--root) }
|
|
53
|
+
.-lh\:xs { line-height: var(--lh--xs) }
|
|
54
|
+
.-lh\:s { line-height: var(--lh--s) }
|
|
55
|
+
.-lh\:l { line-height: var(--lh--l) }
|
|
56
|
+
.-lh\:xl { line-height: var(--lh--xl) }
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/* ------------------------------------------------------------
|
|
60
|
+
font-family
|
|
61
|
+
------------------------------------------------------------ */
|
|
62
|
+
|
|
63
|
+
.-ff\:sans {font-family: var(--ff--sans)}
|
|
64
|
+
.-ff\:serif {font-family: var(--ff--serif)}
|
|
65
|
+
.-ff\:mono {font-family: var(--ff--mono)}
|
|
66
|
+
.-ff\:emoji {font-family: var(--ff--emoji)}
|
|
67
|
+
|
|
68
|
+
/* ------------------------------------------------------------
|
|
69
|
+
letter-spacing
|
|
70
|
+
------------------------------------------------------------ */
|
|
71
|
+
// [class*='-lts:'] {
|
|
72
|
+
// letter-spacing: var(--lts);
|
|
73
|
+
// }
|
|
74
|
+
.-lts\:root {letter-spacing: var(--lts--root)}
|
|
75
|
+
.-lts\:s {letter-spacing: var(--lts--s)}
|
|
76
|
+
.-lts\:l {letter-spacing: var(--lts--l)}
|
|
77
|
+
.-lts\:xl {letter-spacing: var(--lts--xl)}
|
|
78
|
+
|
|
79
|
+
// .-lts\:-2 {letter-spacing: var(--lts---2);}
|
|
80
|
+
// .-lts\:-1 {letter-spacing: var(--lts---1);}
|
|
81
|
+
// .-lts\:0 {letter-spacing: 0;}
|
|
82
|
+
// .-lts\:1 {letter-spacing: var(--lts--1);}
|
|
83
|
+
// .-lts\:2 {letter-spacing: var(--lts--2);}
|
|
84
|
+
// .-lts\:3 {letter-spacing: var(--lts--3);}
|
|
85
|
+
// .-lts\:4 {letter-spacing: var(--lts--4);}
|
|
86
|
+
// .-lts\:5 {letter-spacing: var(--lts--5);}
|
|
87
|
+
// .-lts\:6 {letter-spacing: var(--lts--6);}
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
// text-align
|
|
91
|
+
.-ta\:c{text-align: center;}
|
|
92
|
+
.-ta\:r{text-align: right;}
|
|
93
|
+
.-ta\:l{text-align: left;}
|
|
94
|
+
|
|
95
|
+
// font-weight
|
|
96
|
+
.-fw\:bold{font-weight: var(--fw--bold);}
|
|
97
|
+
.-fw\:thin{font-weight: var(--fw--thin);}
|
|
98
|
+
|
|
99
|
+
// .-fw\:100{font-weight: 100;}
|
|
100
|
+
// .-fw\:300{font-weight: 300;}
|
|
101
|
+
// .-fw\:400{font-weight: 400;}
|
|
102
|
+
// .-fw\:500{font-weight: 500;}
|
|
103
|
+
// .-fw\:700{font-weight: 700;}
|
|
104
|
+
// .-fw\:900{font-weight: 900;}
|
|
105
|
+
|
|
106
|
+
.-fs\:n{font-style: normal;}
|
|
107
|
+
.-fs\:i{font-style: italic;}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
// ---------------------------------------------------------------------
|
|
113
|
+
// lh 自動計算
|
|
114
|
+
// ---------------------------------------------------------------------
|
|
115
|
+
|
|
116
|
+
// @layer lism-init {
|
|
117
|
+
// // :where(:is(h1, h2, h3, h4, h5, h6, p)) {
|
|
118
|
+
// // font-size: var(--fz, inherit);
|
|
119
|
+
// // line-height: var(--lh, inherit);
|
|
120
|
+
// // }
|
|
121
|
+
|
|
122
|
+
// :root {
|
|
123
|
+
// --lh--min: 1.25em;
|
|
124
|
+
// --lh--max: 1.75em;
|
|
125
|
+
// --lh--slope: 0.3; // 自動計算用の傾き
|
|
126
|
+
// }
|
|
127
|
+
|
|
128
|
+
// :is(h1, h2, h3, h4, h5, h6),
|
|
129
|
+
// [class*='-fz\:'] {
|
|
130
|
+
// --base: calc(var(--lh--base) * 1em); // 計算ように単位をつけておく
|
|
131
|
+
|
|
132
|
+
// // 計算結果
|
|
133
|
+
// --calced: calc((var(--slope) * 1em) + var(--base) - (var(--lh--slope) * var(--fz)));
|
|
134
|
+
|
|
135
|
+
// // 上限値を var(--base) にすることで、フォントサイズが大きい場合にのみ計算を適用することも可能
|
|
136
|
+
// line-height: clamp(var(--lh--min), var(--calced), var(--lh--max));
|
|
137
|
+
// }
|
|
138
|
+
// }
|
|
139
|
+
|
|
140
|
+
// 1.75em - fz*slope + slope*1em
|
|
141
|
+
// slop .4, fz 2em → 1.75em - .4*2em + .4*1em → 1.15em
|
|
142
|
+
// slop .35, fz 2em → 1.75em - .35*2em + .35*1em → 1.2em
|
|
143
|
+
// slop .3, fz 2em → 1.75em - .3*2em + .3*1em → 1.25em
|
|
144
|
+
// slop .3, fz 1.5em → 1.75em - .3*1.5em + .3*1em → 1.3em
|
|
145
|
+
// slop .3, fz 2em → 1.5em - .3*2em + .3*1em → 1.1em
|
|
146
|
+
// slop .2, fz 2em → 1.5em - .2*2em + .2*1em → 1.2em
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// .-lis\:n{list-style: none;}
|
|
2
|
+
// .-bxz\:cb{box-sizing: content-box;}
|
|
3
|
+
// .-bxz\:bb{box-sizing: border-box;}
|
|
4
|
+
|
|
5
|
+
// あとでかんがえる
|
|
6
|
+
// .-tov\:ell{text-overflow: ellipsis;}
|
|
7
|
+
|
|
8
|
+
// .-iis\:0{inset-inline-start: 0;}
|
|
9
|
+
// .-iis\:100\%{inset-inline-start:100%;}
|
|
10
|
+
// .-iie\:0{inset-inline-end: 0;}
|
|
11
|
+
// .-iie\:100\%{inset-inline-end:100%;}
|
|
12
|
+
// .-ibs\:0{inset-block-start: 0;}
|
|
13
|
+
// .-ibs\:100{inset-block-start:100%;}
|
|
14
|
+
// .-ibe\:0{inset-block-end: 0;}
|
|
15
|
+
// .-ibe\:100{inset-block-end:100%;}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
@use '../_mixin' as mixin;
|
|
2
|
+
|
|
3
|
+
// has--border?
|
|
4
|
+
// bdc だけとかの指定でも -bd:出力?
|
|
5
|
+
/*
|
|
6
|
+
|
|
7
|
+
使用される環境(resetCSS)によって挙動が変わりやすいので 各プロパティを変数で管理する。
|
|
8
|
+
ブラウザのデフォルト挙動では、bds指定でborder出現してくるが、nextraのresetCSSみたいな特殊な環境だとbdwの指定でborderでてきたりする。
|
|
9
|
+
|
|
10
|
+
borderはLismの中でも特殊な仕様になっている。
|
|
11
|
+
--bds, --bdw, --bdc で管理できるようにしていて、そのために .-bd: クラスを使う。
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
// bdc, bdw などでカラーや太さを上書きできるように border 自体を変数管理
|
|
15
|
+
// :where(.has--bd),
|
|
16
|
+
@include mixin.maybe_where('[class*="-bd:"]', 'base') {
|
|
17
|
+
--bds: solid;
|
|
18
|
+
--bdw: 1px;
|
|
19
|
+
--bdc: currentColor;
|
|
20
|
+
--bd: var(--bdw) var(--bds) var(--bdc);
|
|
21
|
+
}
|
|
22
|
+
// .has--bd:where(:not([class*='-bd:'])) {
|
|
23
|
+
.-bd\: {
|
|
24
|
+
border-style: var(--bds);
|
|
25
|
+
border-width: var(--bdw);
|
|
26
|
+
border-color: var(--bdc);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* stylelint-disable */
|
|
30
|
+
.-bd\:n {
|
|
31
|
+
border: none;
|
|
32
|
+
}
|
|
33
|
+
.-bd\:inherit {
|
|
34
|
+
border: inherit;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// 方向指定
|
|
38
|
+
.-bd\:l {
|
|
39
|
+
border-left: var(--bd);
|
|
40
|
+
}
|
|
41
|
+
.-bd\:r {
|
|
42
|
+
border-right: var(--bd);
|
|
43
|
+
}
|
|
44
|
+
.-bd\:t {
|
|
45
|
+
border-top: var(--bd);
|
|
46
|
+
}
|
|
47
|
+
.-bd\:b {
|
|
48
|
+
border-bottom: var(--bd);
|
|
49
|
+
}
|
|
50
|
+
.-bd\:x {
|
|
51
|
+
border-inline: var(--bd);
|
|
52
|
+
}
|
|
53
|
+
.-bd\:y {
|
|
54
|
+
border-block: var(--bd);
|
|
55
|
+
}
|
|
56
|
+
.-bd\:is {
|
|
57
|
+
border-inline-start: var(--bd);
|
|
58
|
+
}
|
|
59
|
+
.-bd\:ie {
|
|
60
|
+
border-inline-end: var(--bd);
|
|
61
|
+
}
|
|
62
|
+
.-bd\:bs {
|
|
63
|
+
border-block-start: var(--bd);
|
|
64
|
+
}
|
|
65
|
+
.-bd\:be {
|
|
66
|
+
border-block-end: var(--bd);
|
|
67
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// c='(.*):(.+)%' で使用箇所検索
|
|
2
|
+
.-c\:mix {
|
|
3
|
+
--c1: currentColor;
|
|
4
|
+
--c2: transparent;
|
|
5
|
+
--c: color-mix(in srgb, var(--c1) var(--c-pct, 50%), var(--c2));
|
|
6
|
+
}
|
|
7
|
+
.-bgc\:mix {
|
|
8
|
+
--bgc1: currentColor;
|
|
9
|
+
--bgc2: transparent;
|
|
10
|
+
--bgc: color-mix(in srgb, var(--bgc1) var(--bgc-pct, 50%), var(--bgc2));
|
|
11
|
+
}
|
|
12
|
+
.-bdc\:mix {
|
|
13
|
+
--bdc1: currentColor;
|
|
14
|
+
--bdc2: transparent;
|
|
15
|
+
--bdc: color-mix(in srgb, var(--bdc1) var(--bdc-pct, 50%), var(--bdc2));
|
|
16
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
// .-hov\: ユーティリティ
|
|
2
|
+
// [class*='-hov:'] {
|
|
3
|
+
// transition-property: var(--hov-trsp, all);
|
|
4
|
+
// transition-duration: var(--hov-trsdu, 0.3s);
|
|
5
|
+
// // transition: all var(--hov-trsdu);
|
|
6
|
+
// }
|
|
7
|
+
|
|
8
|
+
// :where(:any-link, :enabled, summary)
|
|
9
|
+
|
|
10
|
+
@media (any-hover: hover) {
|
|
11
|
+
// ------------------------------------------------------------
|
|
12
|
+
// プリセット
|
|
13
|
+
// ------------------------------------------------------------
|
|
14
|
+
.-hov\:fade:hover {
|
|
15
|
+
opacity: 0.65;
|
|
16
|
+
}
|
|
17
|
+
// .-hov\:shadow:hover {
|
|
18
|
+
// box-shadow: var(--bxsh--4);
|
|
19
|
+
// }
|
|
20
|
+
// .-hov\:up:hover {
|
|
21
|
+
// translate: 0 -3px;
|
|
22
|
+
// }
|
|
23
|
+
// .-hov\:u:hover {
|
|
24
|
+
// text-decoration: underline !important;
|
|
25
|
+
// }
|
|
26
|
+
|
|
27
|
+
// ------------------------------------------------------------
|
|
28
|
+
// 値指定
|
|
29
|
+
// ------------------------------------------------------------
|
|
30
|
+
.-hov\:c\::hover {
|
|
31
|
+
color: var(--hov-c) !important;
|
|
32
|
+
}
|
|
33
|
+
.-hov\:bdc\::hover {
|
|
34
|
+
border-color: var(--hov-bdc) !important;
|
|
35
|
+
}
|
|
36
|
+
.-hov\:bgc\::hover {
|
|
37
|
+
background-color: var(--hov-bgc) !important;
|
|
38
|
+
}
|
|
39
|
+
.-hov\:bxsh\::hover {
|
|
40
|
+
box-shadow: var(--hov-bxsh);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// .-hov\:op\::hover {
|
|
44
|
+
// opacity: var(--hov-op) !important;
|
|
45
|
+
// }
|
|
46
|
+
// .-hov\:filter\::hover {
|
|
47
|
+
// filter: var(--hov-filter) !important;
|
|
48
|
+
// }
|
|
49
|
+
.-hov\:set:hover {
|
|
50
|
+
--_notHov: ;
|
|
51
|
+
}
|
|
52
|
+
.-hov\:set:not(:hover) {
|
|
53
|
+
--_isHov: ;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
@media (any-hover: none) {
|
|
57
|
+
.-hov\:set {
|
|
58
|
+
--_isHov: ;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// ------------------------------------------------------------
|
|
63
|
+
// .-hov\:get
|
|
64
|
+
// ------------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.-hov\:get\:hide {
|
|
67
|
+
opacity: var(--_isHov, 0);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.-hov\:get\:show {
|
|
71
|
+
opacity: var(--_notHov, 0);
|
|
72
|
+
visibility: var(--_notHov, hidden);
|
|
73
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@use '../_mixin' as mixin;
|
|
2
|
+
|
|
3
|
+
// 変数初期セット(親子関係で影響しないように)
|
|
4
|
+
@include mixin.maybe_where('.-trs\\:', 'base') {
|
|
5
|
+
--trsdu: var(--trsdu--default);
|
|
6
|
+
--trsp: all;
|
|
7
|
+
--trstf: ease;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.-trs\: {
|
|
11
|
+
transition: var(--trsdu) var(--trstf);
|
|
12
|
+
transition-property: var(--trsp);
|
|
13
|
+
// transition-duration: var(--trsdu);
|
|
14
|
+
// transition-timing-function: var(--trstf);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// .-trstf\:in {--trstf: ease-in;}
|
|
18
|
+
// .-trstf\:out {--trstf: ease-out;}
|
|
19
|
+
// .-trstf\:in-out {--trstf: ease-in-out;}
|
|
20
|
+
// .-trstf\:linear {--trstf: linear;}
|