@medyll/cssfabric 0.2.0 → 0.2.1-beta.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 +58 -38
- package/dist/NewMenu.svelte +41 -0
- package/dist/NewMenu.svelte.d.ts +19 -0
- package/dist/css/animation/animation.css +2 -0
- package/dist/css/base/base.css +47 -0
- package/dist/css/base/base.min.css +1 -0
- package/{styles → dist/css}/box/box.css +118 -0
- package/dist/css/box/box.min.css +1 -0
- package/{styles → dist/css}/box/box.responsive.css +3063 -1550
- package/dist/css/box/box.responsive.min.css +1 -0
- package/{styles → dist/css}/color/color.css +11 -9
- package/{styles → dist/css}/color/color.responsive.css +3446 -1932
- package/dist/css/color/color.responsive.min.css +1 -0
- package/dist/css/cssfabric.css +5167 -0
- package/dist/css/cssfabric.min.css +4877 -0
- package/dist/css/cssfabric.responsive.css +20419 -0
- package/dist/css/cssfabric.responsive.min.css +1 -0
- package/{styles → dist/css}/flex/flex.css +2 -0
- package/{styles → dist/css}/flex/flex.responsive.css +192 -114
- package/dist/css/flex/flex.responsive.min.css +1 -0
- package/{styles → dist/css}/grid/grid.css +2 -0
- package/{styles → dist/css}/grid/grid.responsive.css +230 -212
- package/dist/css/grid/grid.responsive.min.css +1 -0
- package/{styles → dist/css}/menu/menu.css +2 -0
- package/{styles → dist/css}/menu/menu.responsive.css +165 -78
- package/dist/css/menu/menu.responsive.min.css +1 -0
- package/{styles → dist/css}/overflow/overflow.css +2 -0
- package/{styles → dist/css}/overflow/overflow.responsive.css +98 -105
- package/dist/css/overflow/overflow.responsive.min.css +1 -0
- package/{styles → dist/css}/scale/scale.css +2 -0
- package/{styles → dist/css}/scale/scale.responsive.css +1520 -1152
- package/dist/css/scale/scale.responsive.min.css +1 -0
- package/{styles → dist/css}/table/table.css +2 -0
- package/{styles → dist/css}/table/table.responsive.css +162 -86
- package/dist/css/table/table.responsive.min.css +1 -0
- package/{styles → dist/css}/text/text.css +2 -0
- package/{styles → dist/css}/text/text.responsive.css +76 -55
- package/dist/css/text/text.responsive.min.css +1 -0
- package/{styles → dist/css}/theme/theme.css +51 -0
- package/{styles → dist/css}/theme/theme.min.css +1 -1
- package/{styles → dist/css}/vars.css +66 -67
- package/dist/css/vars.min.css +1 -0
- package/{styles → dist/css}/zindex/zindex.css +2 -0
- package/dist/cssFabric/config.d.ts +29 -0
- package/dist/cssFabric/config.js +29 -0
- package/dist/cssFabric/cssFabricSheet.d.ts +1226 -0
- package/dist/cssFabric/cssFabricSheet.js +1270 -0
- package/dist/cssFabric/cssProperties.d.ts +27 -0
- package/dist/cssFabric/cssProperties.js +343 -0
- package/dist/cssFabric/cssVariationsAi.d.ts +12 -0
- package/dist/cssFabric/cssVariationsAi.js +111 -0
- package/dist/cssFabric/index.d.ts +113 -0
- package/dist/cssFabric/index.js +341 -0
- package/dist/cssf/README.md +197 -0
- package/{init/importCssVars.d.ts → dist/cssf/cssf.d.ts} +1 -1
- package/dist/cssf/cssf.js +12 -0
- package/dist/cssf/cssfGuide.d.ts +14 -0
- package/dist/cssf/cssfGuide.js +50 -0
- package/dist/cssf/cssfLib.d.ts +134 -0
- package/dist/cssf/cssfLib.js +116 -0
- package/dist/cssf/cssfModel.d.ts +8 -0
- package/dist/cssf/cssfModel.js +59 -0
- package/dist/cssf/cssfPlugin.d.ts +3 -0
- package/dist/cssf/cssfPlugin.js +37 -0
- package/dist/cssf/cssfTransformer.d.ts +2 -0
- package/dist/cssf/cssfTransformer.js +100 -0
- package/dist/cssf/index.d.ts +6 -0
- package/dist/cssf/index.js +7 -0
- package/dist/cssfVsCode/.vscode/launch.json +17 -0
- package/dist/cssfVsCode/.vscodeignore +4 -0
- package/dist/cssfVsCode/CHANGELOG.md +9 -0
- package/dist/cssfVsCode/README.md +65 -0
- package/dist/cssfVsCode/language-configuration.json +36 -0
- package/dist/cssfVsCode/package.json +40 -0
- package/dist/cssfVsCode/syntaxes/cssf.tmLanguage.json +1868 -0
- package/dist/cssfVsCode/test.cssf +6 -0
- package/dist/cssfVsCode/vsc-extension-quickstart.md +29 -0
- package/{_generated → dist/generated}/cssFabric.vars.json +4 -4
- package/{_generated/export.variables.md → dist/generated/cssFabric.vars.md} +268 -240
- package/dist/index.d.ts +119 -0
- package/dist/index.js +120 -0
- package/dist/scripts/cssfabric.d.ts +24 -0
- package/{scripts → dist/scripts}/cssfabric.js +43 -43
- package/{scripts → dist/scripts}/cssfabricClassNames.d.ts +14 -14
- package/{scripts → dist/scripts}/cssfabricClassNames.js +146 -146
- package/dist/scripts/index.d.ts +2 -0
- package/{scripts → dist/scripts}/index.js +4 -4
- package/{scripts → dist/scripts}/utils.d.ts +5 -5
- package/{scripts → dist/scripts}/utils.js +38 -38
- package/dist/scss/_utils.scss +203 -0
- package/dist/scss/modules/_cssfabric-config.scss +178 -0
- package/dist/scss/modules/_mixins.scss +1 -0
- package/dist/scss/modules/animation/_animation-vars.scss +17 -0
- package/dist/scss/modules/animation/animation.scss +3 -0
- package/dist/scss/modules/base/_base-vars.scss +19 -0
- package/dist/scss/modules/base/base.scss +58 -0
- package/dist/scss/modules/box/_box-build.scss +305 -0
- package/dist/scss/modules/box/_box-vars.scss +121 -0
- package/dist/scss/modules/box/box-responsive.scss +18 -0
- package/dist/scss/modules/box/box.scss +3 -0
- package/dist/scss/modules/color/_color-build.scss +196 -0
- package/dist/scss/modules/color/_color-vars.scss +80 -0
- package/dist/scss/modules/color/color-responsive.scss +23 -0
- package/dist/scss/modules/color/color.scss +9 -0
- package/dist/scss/modules/css-fabric.scss +1 -0
- package/dist/scss/modules/flex/_flex-build.scss +150 -0
- package/dist/scss/modules/flex/_flex-vars.scss +84 -0
- package/dist/scss/modules/flex/flex-responsive.scss +25 -0
- package/dist/scss/modules/flex/flex.scss +3 -0
- package/dist/scss/modules/grid/_grid-build.scss +87 -0
- package/dist/scss/modules/grid/_grid-vars.scss +88 -0
- package/dist/scss/modules/grid/grid-responsive.scss +25 -0
- package/dist/scss/modules/grid/grid.scss +6 -0
- package/dist/scss/modules/menu/_menu-build.scss +120 -0
- package/dist/scss/modules/menu/_menu-vars.scss +29 -0
- package/dist/scss/modules/menu/menu-responsive.scss +19 -0
- package/dist/scss/modules/menu/menu.scss +6 -0
- package/dist/scss/modules/overflow/_overflow-build.scss +22 -0
- package/dist/scss/modules/overflow/_overflow-vars.scss +31 -0
- package/dist/scss/modules/overflow/overflow-responsive.scss +25 -0
- package/dist/scss/modules/overflow/overflow.scss +7 -0
- package/dist/scss/modules/scale/_scale-build.scss +142 -0
- package/dist/scss/modules/scale/_scale-vars.scss +84 -0
- package/dist/scss/modules/scale/scale-responsive.scss +23 -0
- package/dist/scss/modules/scale/scale.scss +8 -0
- package/dist/scss/modules/table/_table-build.scss +134 -0
- package/dist/scss/modules/table/_table-vars.scss +30 -0
- package/dist/scss/modules/table/table-responsive.scss +24 -0
- package/dist/scss/modules/table/table.scss +8 -0
- package/dist/scss/modules/text/_text-build.scss +166 -0
- package/dist/scss/modules/text/_text-vars.scss +87 -0
- package/dist/scss/modules/text/text-responsive.scss +26 -0
- package/dist/scss/modules/text/text.scss +6 -0
- package/dist/scss/modules/theme/_theme-build.scss +128 -0
- package/dist/scss/modules/theme/_theme-vars.scss +46 -0
- package/dist/scss/modules/theme/theme.scss +6 -0
- package/dist/scss/modules/vars.scss +46 -0
- package/dist/scss/modules/zindex/_zindex-vars.scss +14 -0
- package/dist/scss/modules/zindex/zindex.scss +15 -0
- package/package.json +70 -113
- package/_generated/readme.md +0 -0
- package/init/importCssVars.js +0 -2
- package/scripts/cssfabric.d.ts +0 -24
- package/scripts/index.d.ts +0 -2
- package/styles/animation/animation.css +0 -0
- package/styles/base/base.css +0 -215
- package/styles/base/base.min.css +0 -1
- package/styles/box/box.min.css +0 -1
- package/styles/box/box.responsive.min.css +0 -1
- package/styles/color/color.responsive.min.css +0 -1
- package/styles/cssfabric.css +0 -61792
- package/styles/cssfabric.min.css +0 -168
- package/styles/cssfabric.responsive.css +0 -200596
- package/styles/cssfabric.responsive.min.css +0 -108
- package/styles/flex/flex.responsive.min.css +0 -1
- package/styles/grid/grid.responsive.min.css +0 -1
- package/styles/menu/menu.responsive.min.css +0 -1
- package/styles/overflow/overflow.responsive.min.css +0 -1
- package/styles/scale/scale.responsive.min.css +0 -1
- package/styles/table/table.responsive.min.css +0 -1
- package/styles/text/text.responsive.min.css +0 -1
- package/styles/vars.min.css +0 -1
- /package/{styles → dist/css}/animation/animation.min.css +0 -0
- /package/{styles → dist/css}/color/color.min.css +0 -0
- /package/{styles → dist/css}/flex/flex.min.css +0 -0
- /package/{styles → dist/css}/grid/grid.min.css +0 -0
- /package/{styles → dist/css}/menu/menu.min.css +0 -0
- /package/{styles → dist/css}/overflow/overflow.min.css +0 -0
- /package/{styles → dist/css}/scale/scale.min.css +0 -0
- /package/{styles → dist/css}/table/table.min.css +0 -0
- /package/{styles → dist/css}/text/text.min.css +0 -0
- /package/{styles → dist/css}/zindex/zindex.min.css +0 -0
- /package/{_generated → dist/scss}/index.d.ts +0 -0
|
@@ -1,240 +1,268 @@
|
|
|
1
|
-
# Welcome to cssfabric
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Willing to bring my utility-first 2011 css framework to a more decent life !
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
This is also a learning point about gulp, webpack, packages and friends.
|
|
8
|
-
|
|
9
|
-
> yaocf !
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<br/>
|
|
13
|
-
|
|
14
|
-
## Incoming features
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<br/>
|
|
18
|
-
|
|
19
|
-
| modules | |
|
|
20
|
-
| ------- | --- |
|
|
21
|
-
|
|
|
22
|
-
|
|
23
|
-
box | cssfabric box module to set heights, paddings, margins and shadows on all html elements
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
grid | cssfabric flex grid system module
|
|
27
|
-
menu | cssfabric menu module to set menu style
|
|
28
|
-
overflow | cssfabric overflow module to set overflow styles on all html elements
|
|
29
|
-
scale | cssfabric scale module to set dimensions and ratios on all html elements
|
|
30
|
-
table | cssfabric table module to set different table styles
|
|
31
|
-
text | cssfabric text module to set text style on all html elements
|
|
32
|
-
theme |
|
|
33
|
-
zindex | cssfabric zindex module to set z-index on all html elements |
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
<br/>
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
<br/>
|
|
42
|
-
|
|
43
|
-
### More details
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
#### <strong>module box</strong>
|
|
48
|
-
|
|
49
|
-
#### [padding]
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
- padding properties for html elements
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: pad
|
|
56
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
57
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3 4 5 6 7 8
|
|
58
|
-
|
|
59
|
-
#### [margin]
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
- margin properties for html elements
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: marg
|
|
66
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
67
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3 4 5 6 7 8
|
|
68
|
-
|
|
69
|
-
#### [border]
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
- border properties for html elements
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: border
|
|
76
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
77
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3
|
|
78
|
-
|
|
79
|
-
#### [
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
#### [
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>
|
|
240
|
-
- <span style='width:80px;display:inline-block;overflow:visible'><b>
|
|
1
|
+
# Welcome to cssfabric
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
Willing to bring my utility-first 2011 css framework to a more decent life !
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
This is also a learning point about gulp, webpack, packages and friends.
|
|
8
|
+
|
|
9
|
+
> yaocf !
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<br/>
|
|
13
|
+
|
|
14
|
+
## Incoming features
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
<br/>
|
|
18
|
+
|
|
19
|
+
| modules | |
|
|
20
|
+
| ------- | --- |
|
|
21
|
+
| animation | cssfabric simplest animation module |
|
|
22
|
+
| base | cssfabric base config variables |
|
|
23
|
+
| box | cssfabric box module to set heights, paddings, margins and shadows on all html elements |
|
|
24
|
+
| color | cssfabric color system: its about colors |
|
|
25
|
+
| flex | cssfabric flex system module |
|
|
26
|
+
| grid | cssfabric flex grid system module |
|
|
27
|
+
| menu | cssfabric menu module to set menu style |
|
|
28
|
+
| overflow | cssfabric overflow module to set overflow styles on all html elements |
|
|
29
|
+
| scale | cssfabric scale module to set dimensions and ratios on all html elements |
|
|
30
|
+
| table | cssfabric table module to set different table styles |
|
|
31
|
+
| text | cssfabric text module to set text style on all html elements |
|
|
32
|
+
| theme | |
|
|
33
|
+
| zindex | cssfabric zindex module to set z-index on all html elements |
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<br/>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
<br/>
|
|
42
|
+
|
|
43
|
+
### More details
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
#### <strong>module box</strong>
|
|
48
|
+
|
|
49
|
+
#### [padding]
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
- padding properties for html elements
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: pad
|
|
56
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
57
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3 4 5 6 7 8 9 10 11 12
|
|
58
|
+
|
|
59
|
+
#### [margin]
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
- margin properties for html elements
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: marg
|
|
66
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
67
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3 4 5 6 7 8 9 10 11 12
|
|
68
|
+
|
|
69
|
+
#### [border]
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
- border properties for html elements
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: border
|
|
76
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: _ t b l r all u ii tb
|
|
77
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: _ 1 2 3
|
|
78
|
+
|
|
79
|
+
#### [radius]
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: radiusGuy
|
|
83
|
+
|
|
84
|
+
#### [shadow]
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
- applying shadows give depth and levels to your design
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: shad
|
|
91
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _</span>: 2 4 8 16 32
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
#### <strong>module color</strong>
|
|
96
|
+
|
|
97
|
+
#### [color]
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
- color for text level html elements
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: color
|
|
104
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: scheme palette gray
|
|
105
|
+
|
|
106
|
+
#### [background-color]
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
- background colors
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: bg
|
|
113
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: scheme palette gray
|
|
114
|
+
|
|
115
|
+
#### [background-themed]
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
- same as background-color, but with added contrasted color to text
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: bg-themed
|
|
122
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: scheme palette gray
|
|
123
|
+
|
|
124
|
+
#### [border-color]
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
- border colors are slightly darker to maximize surrounding effect
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: border-color
|
|
131
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: palette gray
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
#### <strong>module flex</strong>
|
|
136
|
+
|
|
137
|
+
#### [grid]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
- a classic flex grid system, and hey, it gets height !
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: flex
|
|
144
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: v h
|
|
145
|
+
|
|
146
|
+
#### [self]
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
- flex children specific classnames
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: self
|
|
153
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: start end stretch
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
#### <strong>module grid</strong>
|
|
158
|
+
|
|
159
|
+
#### [grid]
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
- a classic grid system
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: grid
|
|
166
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: v h
|
|
167
|
+
|
|
168
|
+
#### [self]
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
- grid children specific classnames
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: self
|
|
175
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: start end stretch
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
#### <strong>module menu</strong>
|
|
180
|
+
|
|
181
|
+
#### [menu]
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: menu
|
|
185
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: h v
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
#### <strong>module overflow</strong>
|
|
190
|
+
|
|
191
|
+
#### [overflow]
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: flow
|
|
195
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: visible hidden clip scroll auto
|
|
196
|
+
|
|
197
|
+
#### [overflowX]
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: flowX
|
|
201
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: visible hidden clip scroll auto
|
|
202
|
+
|
|
203
|
+
#### [overflowY]
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: flowY
|
|
207
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: visible hidden clip scroll auto
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
#### <strong>module scale</strong>
|
|
212
|
+
|
|
213
|
+
#### [scale]
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: scale
|
|
217
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: w h
|
|
218
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _size</span>: full mid quarter tiers<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _content</span>: content-max content-min<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _defined-steps</span>: 1 2 4 8 16 24 32 48 64<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- _grid-16</span>: 1-16 2-16 3-16 4-16 5-16 6-16 7-16 8-16 9-16 10-16 11-16 12-16 13-16 14-16 15-16 16-16
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
#### <strong>module table</strong>
|
|
223
|
+
|
|
224
|
+
#### [table]
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
- is a table
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: table
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
#### <strong>module text</strong>
|
|
235
|
+
|
|
236
|
+
#### [text-transform]
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: text
|
|
240
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: cap up low none full
|
|
241
|
+
|
|
242
|
+
#### [font-weight]
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: text
|
|
246
|
+
|
|
247
|
+
#### [text-align]
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: text
|
|
251
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: l r center justify
|
|
252
|
+
|
|
253
|
+
#### [text-shadow]
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: text-shad
|
|
257
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: palette
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
#### <strong>module theme</strong>
|
|
262
|
+
|
|
263
|
+
#### [theme]
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>shorthand</b></span>: theme
|
|
267
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>keys</b></span>: text bg border
|
|
268
|
+
- <span style='width:80px;display:inline-block;overflow:visible'><b>level keys</b></span>:<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- primary</span>: _ light lighter dark darker complement invert<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- secondary</span>: _ light lighter dark darker complement invert<br/><span style='margin-left:20px;width:80px;display:inline-block;overflow:visible'>- tertiary</span>: _ light lighter dark darker complement invert
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
export * from './css/animation/animation.css';
|
|
2
|
+
export * from './css/animation/animation.min.css';
|
|
3
|
+
export * from './css/base/base.css';
|
|
4
|
+
export * from './css/base/base.min.css';
|
|
5
|
+
export * from './css/box/box.css';
|
|
6
|
+
export * from './css/box/box.min.css';
|
|
7
|
+
export * from './css/box/box.responsive.css';
|
|
8
|
+
export * from './css/box/box.responsive.min.css';
|
|
9
|
+
export * from './css/color/color.css';
|
|
10
|
+
export * from './css/color/color.min.css';
|
|
11
|
+
export * from './css/color/color.responsive.css';
|
|
12
|
+
export * from './css/color/color.responsive.min.css';
|
|
13
|
+
export * from './css/cssfabric.css';
|
|
14
|
+
export * from './css/cssfabric.min.css';
|
|
15
|
+
export * from './css/cssfabric.responsive.css';
|
|
16
|
+
export * from './css/cssfabric.responsive.min.css';
|
|
17
|
+
export * from './css/flex/flex.css';
|
|
18
|
+
export * from './css/flex/flex.min.css';
|
|
19
|
+
export * from './css/flex/flex.responsive.css';
|
|
20
|
+
export * from './css/flex/flex.responsive.min.css';
|
|
21
|
+
export * from './css/grid/grid.css';
|
|
22
|
+
export * from './css/grid/grid.min.css';
|
|
23
|
+
export * from './css/grid/grid.responsive.css';
|
|
24
|
+
export * from './css/grid/grid.responsive.min.css';
|
|
25
|
+
export * from './css/menu/menu.css';
|
|
26
|
+
export * from './css/menu/menu.min.css';
|
|
27
|
+
export * from './css/menu/menu.responsive.css';
|
|
28
|
+
export * from './css/menu/menu.responsive.min.css';
|
|
29
|
+
export * from './css/overflow/overflow.css';
|
|
30
|
+
export * from './css/overflow/overflow.min.css';
|
|
31
|
+
export * from './css/overflow/overflow.responsive.css';
|
|
32
|
+
export * from './css/overflow/overflow.responsive.min.css';
|
|
33
|
+
export * from './css/scale/scale.css';
|
|
34
|
+
export * from './css/scale/scale.min.css';
|
|
35
|
+
export * from './css/scale/scale.responsive.css';
|
|
36
|
+
export * from './css/scale/scale.responsive.min.css';
|
|
37
|
+
export * from './css/table/table.css';
|
|
38
|
+
export * from './css/table/table.min.css';
|
|
39
|
+
export * from './css/table/table.responsive.css';
|
|
40
|
+
export * from './css/table/table.responsive.min.css';
|
|
41
|
+
export * from './css/text/text.css';
|
|
42
|
+
export * from './css/text/text.min.css';
|
|
43
|
+
export * from './css/text/text.responsive.css';
|
|
44
|
+
export * from './css/text/text.responsive.min.css';
|
|
45
|
+
export * from './css/theme/theme.css';
|
|
46
|
+
export * from './css/theme/theme.min.css';
|
|
47
|
+
export * from './css/vars.css';
|
|
48
|
+
export * from './css/vars.min.css';
|
|
49
|
+
export * from './css/zindex/zindex.css';
|
|
50
|
+
export * from './css/zindex/zindex.min.css';
|
|
51
|
+
export * from './cssf/cssf.js';
|
|
52
|
+
export * from './cssf/cssfGuide.js';
|
|
53
|
+
export * from './cssf/cssfLib.js';
|
|
54
|
+
export * from './cssf/cssfModel.js';
|
|
55
|
+
export * from './cssf/cssfPlugin.js';
|
|
56
|
+
export * from './cssf/cssfTransformer.js';
|
|
57
|
+
export * from './cssf/index.js';
|
|
58
|
+
export * from './cssFabric/config.js';
|
|
59
|
+
export * from './cssFabric/cssFabricSheet.js';
|
|
60
|
+
export * from './cssFabric/cssProperties.js';
|
|
61
|
+
export * from './cssFabric/cssVariationsAi.js';
|
|
62
|
+
export * from './cssFabric/index.js';
|
|
63
|
+
export * from './index.js';
|
|
64
|
+
export { default as NewMenu } from './NewMenu.svelte';
|
|
65
|
+
export * from './scripts/cssfabric.js';
|
|
66
|
+
export * from './scripts/cssfabricClassNames.js';
|
|
67
|
+
export * from './scripts/index.js';
|
|
68
|
+
export * from './scripts/utils.js';
|
|
69
|
+
export * from './scss/_utils.scss';
|
|
70
|
+
export * from './scss/index.d.js';
|
|
71
|
+
export * from './scss/modules/_cssfabric-config.scss';
|
|
72
|
+
export * from './scss/modules/_mixins.scss';
|
|
73
|
+
export * from './scss/modules/animation/_animation-vars.scss';
|
|
74
|
+
export * from './scss/modules/animation/animation.scss';
|
|
75
|
+
export * from './scss/modules/base/_base-vars.scss';
|
|
76
|
+
export * from './scss/modules/base/base.scss';
|
|
77
|
+
export * from './scss/modules/box/_box-build.scss';
|
|
78
|
+
export * from './scss/modules/box/_box-vars.scss';
|
|
79
|
+
export * from './scss/modules/box/box-responsive.scss';
|
|
80
|
+
export * from './scss/modules/box/box.scss';
|
|
81
|
+
export * from './scss/modules/color/_color-build.scss';
|
|
82
|
+
export * from './scss/modules/color/_color-vars.scss';
|
|
83
|
+
export * from './scss/modules/color/color-responsive.scss';
|
|
84
|
+
export * from './scss/modules/color/color.scss';
|
|
85
|
+
export * from './scss/modules/css-fabric.scss';
|
|
86
|
+
export * from './scss/modules/flex/_flex-build.scss';
|
|
87
|
+
export * from './scss/modules/flex/_flex-vars.scss';
|
|
88
|
+
export * from './scss/modules/flex/flex-responsive.scss';
|
|
89
|
+
export * from './scss/modules/flex/flex.scss';
|
|
90
|
+
export * from './scss/modules/grid/_grid-build.scss';
|
|
91
|
+
export * from './scss/modules/grid/_grid-vars.scss';
|
|
92
|
+
export * from './scss/modules/grid/grid-responsive.scss';
|
|
93
|
+
export * from './scss/modules/grid/grid.scss';
|
|
94
|
+
export * from './scss/modules/menu/_menu-build.scss';
|
|
95
|
+
export * from './scss/modules/menu/_menu-vars.scss';
|
|
96
|
+
export * from './scss/modules/menu/menu-responsive.scss';
|
|
97
|
+
export * from './scss/modules/menu/menu.scss';
|
|
98
|
+
export * from './scss/modules/overflow/_overflow-build.scss';
|
|
99
|
+
export * from './scss/modules/overflow/_overflow-vars.scss';
|
|
100
|
+
export * from './scss/modules/overflow/overflow-responsive.scss';
|
|
101
|
+
export * from './scss/modules/overflow/overflow.scss';
|
|
102
|
+
export * from './scss/modules/scale/_scale-build.scss';
|
|
103
|
+
export * from './scss/modules/scale/_scale-vars.scss';
|
|
104
|
+
export * from './scss/modules/scale/scale-responsive.scss';
|
|
105
|
+
export * from './scss/modules/scale/scale.scss';
|
|
106
|
+
export * from './scss/modules/table/_table-build.scss';
|
|
107
|
+
export * from './scss/modules/table/_table-vars.scss';
|
|
108
|
+
export * from './scss/modules/table/table-responsive.scss';
|
|
109
|
+
export * from './scss/modules/table/table.scss';
|
|
110
|
+
export * from './scss/modules/text/_text-build.scss';
|
|
111
|
+
export * from './scss/modules/text/_text-vars.scss';
|
|
112
|
+
export * from './scss/modules/text/text-responsive.scss';
|
|
113
|
+
export * from './scss/modules/text/text.scss';
|
|
114
|
+
export * from './scss/modules/theme/_theme-build.scss';
|
|
115
|
+
export * from './scss/modules/theme/_theme-vars.scss';
|
|
116
|
+
export * from './scss/modules/theme/theme.scss';
|
|
117
|
+
export * from './scss/modules/vars.scss';
|
|
118
|
+
export * from './scss/modules/zindex/_zindex-vars.scss';
|
|
119
|
+
export * from './scss/modules/zindex/zindex.scss';
|