@stackoverflow/stacks 1.0.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.
Files changed (71) hide show
  1. package/README.md +47 -47
  2. package/dist/css/stacks.css +108 -0
  3. package/dist/css/stacks.min.css +1 -1
  4. package/lib/css/atomic/borders.less +378 -378
  5. package/lib/css/atomic/colors.less +209 -209
  6. package/lib/css/atomic/flex.less +375 -375
  7. package/lib/css/atomic/grid.less +174 -174
  8. package/lib/css/atomic/misc.less +343 -343
  9. package/lib/css/atomic/spacing.less +332 -314
  10. package/lib/css/atomic/typography.less +273 -273
  11. package/lib/css/atomic/width-height.less +194 -194
  12. package/lib/css/base/body.less +44 -44
  13. package/lib/css/base/configuration-static.less +61 -61
  14. package/lib/css/base/icons.less +20 -20
  15. package/lib/css/base/internals.less +220 -220
  16. package/lib/css/base/reset-meyer.less +64 -64
  17. package/lib/css/base/reset-normalize.less +449 -449
  18. package/lib/css/base/reset.less +20 -20
  19. package/lib/css/components/activity-indicator.less +45 -45
  20. package/lib/css/components/avatars.less +189 -189
  21. package/lib/css/components/badges.less +209 -209
  22. package/lib/css/components/banners.less +80 -80
  23. package/lib/css/components/blank-states.less +26 -26
  24. package/lib/css/components/breadcrumbs.less +44 -44
  25. package/lib/css/components/button-groups.less +104 -104
  26. package/lib/css/components/buttons.less +665 -665
  27. package/lib/css/components/cards.less +44 -44
  28. package/lib/css/components/code-blocks.less +130 -130
  29. package/lib/css/components/collapsible.less +104 -104
  30. package/lib/css/components/inputs.less +728 -728
  31. package/lib/css/components/link-previews.less +136 -136
  32. package/lib/css/components/links.less +218 -218
  33. package/lib/css/components/menu.less +47 -47
  34. package/lib/css/components/modals.less +133 -133
  35. package/lib/css/components/navigation.less +146 -146
  36. package/lib/css/components/notices.less +233 -233
  37. package/lib/css/components/page-titles.less +60 -60
  38. package/lib/css/components/pagination.less +55 -55
  39. package/lib/css/components/popovers.less +197 -197
  40. package/lib/css/components/post-summary.less +425 -425
  41. package/lib/css/components/progress-bars.less +330 -330
  42. package/lib/css/components/prose.less +503 -503
  43. package/lib/css/components/spinner.less +107 -107
  44. package/lib/css/components/tables.less +341 -341
  45. package/lib/css/components/tags.less +236 -236
  46. package/lib/css/components/toggle-switches.less +144 -144
  47. package/lib/css/components/topbar.less +427 -427
  48. package/lib/css/components/uploader.less +210 -210
  49. package/lib/css/components/user-cards.less +169 -169
  50. package/lib/css/components/widget-dynamic.less +33 -33
  51. package/lib/css/components/widget-static.less +273 -273
  52. package/lib/css/exports/constants-colors.less +1092 -1092
  53. package/lib/css/exports/constants-helpers.less +108 -108
  54. package/lib/css/exports/constants-type.less +153 -153
  55. package/lib/css/exports/exports.less +15 -15
  56. package/lib/css/exports/mixins.less +237 -237
  57. package/lib/css/stacks-dynamic.less +35 -35
  58. package/lib/css/stacks-static.less +86 -86
  59. package/lib/css/stacks.less +13 -13
  60. package/lib/ts/controllers/index.ts +7 -7
  61. package/lib/ts/controllers/s-expandable-control.ts +188 -188
  62. package/lib/ts/controllers/s-modal.ts +321 -321
  63. package/lib/ts/controllers/s-navigation-tablist.ts +117 -117
  64. package/lib/ts/controllers/s-popover.ts +547 -547
  65. package/lib/ts/controllers/s-table.ts +220 -220
  66. package/lib/ts/controllers/s-tooltip.ts +246 -246
  67. package/lib/ts/controllers/s-uploader.ts +172 -172
  68. package/lib/ts/index.ts +20 -20
  69. package/lib/ts/stacks.ts +88 -88
  70. package/lib/tsconfig.json +13 -13
  71. package/package.json +87 -87
@@ -1,273 +1,273 @@
1
- //
2
- // STACK OVERFLOW
3
- // TYPOGRAPHY
4
- //
5
- // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
6
- // Stack Overflow. For documentation of all these classes and how to contribute,
7
- // visit https://stackoverflow.design/
8
- //
9
- // TABLE OF CONTENTS
10
- // • ATOMIC CLASSES
11
- //
12
- // ============================================================================
13
- // $ TYPE RESETS
14
- // ----------------------------------------------------------------------------
15
- h1,
16
- h2,
17
- h3,
18
- h4,
19
- h5,
20
- h6,
21
- p {
22
- margin-top: 0;
23
- }
24
-
25
- // ============================================================================
26
- // $ TEXT SIZES
27
- // ----------------------------------------------------------------------------
28
- // Declare font sizes
29
- .fs-display4 { font-size: var(--fs-display4) !important; }
30
- .fs-display3 { font-size: var(--fs-display3) !important; }
31
- .fs-display2 { font-size: var(--fs-display2) !important; }
32
- .fs-display1 { font-size: var(--fs-display1) !important; }
33
- .fs-headline2 { font-size: var(--fs-headline2) !important; }
34
- .fs-headline1 { font-size: var(--fs-headline1) !important; }
35
- .fs-title { font-size: var(--fs-title) !important; }
36
- .fs-subheading { font-size: var(--fs-subheading) !important; }
37
- .fs-body3 { font-size: var(--fs-body3) !important; }
38
- .fs-body2 { font-size: var(--fs-body2) !important; }
39
- .fs-body1 { font-size: var(--fs-body1) !important; }
40
-
41
- .fs-caption,
42
- .fs-category { font-size: var(--fs-caption) !important; }
43
- .fs-fine { font-size: var(--fs-fine) !important; }
44
-
45
- #stacks-internals #screen-sm({
46
- .fs-display4 { font-size: 3.8rem !important; }
47
- .fs-display3 { font-size: 3.3rem !important; }
48
- .fs-display2 { font-size: 3rem !important; }
49
- .fs-display1 { font-size: 2.6rem !important; }
50
- .fs-headline2 { font-size: 2.3rem !important; }
51
- .fs-headline1 { font-size: 2rem !important; }
52
- .fs-title { font-size: 1.8rem !important; }
53
- .fs-subheading { font-size: 1.6rem !important; }
54
- .fs-body3 { font-size: 1.4rem !important; }
55
- .fs-body2 { font-size: 1.3rem !important; }
56
- }, @force-selector: true);
57
-
58
- .fs-category {
59
- font-weight: 600;
60
- text-transform: uppercase;
61
-
62
- // If a top border is desired
63
- &.has-border {
64
- width: 100%;
65
- padding: var(--su4) 0;
66
- border-top: 1px solid var(--bc-medium);
67
- }
68
- }
69
-
70
- // ============================================================================
71
- // $$ TEXT COLORS
72
- // ----------------------------------------------------------------------------
73
- .fc-dark { color: var(--fc-dark) !important; }
74
- .fc-medium { color: var(--fc-medium) !important; }
75
- .fc-light { color: var(--fc-light) !important; }
76
-
77
- // ============================================================================
78
- // $ LINE HEIGHTS
79
- // ----------------------------------------------------------------------------
80
- .lh-xs { line-height: var(--lh-xs) !important; }
81
- .lh-sm { line-height: var(--lh-sm) !important; }
82
- .lh-md { line-height: var(--lh-md) !important; }
83
- .lh-lg { line-height: var(--lh-lg) !important; }
84
- .lh-xl { line-height: var(--lh-xl) !important; }
85
- .lh-xxl { line-height: var(--lh-xxl) !important; }
86
- .lh-unset { line-height: initial !important; }
87
-
88
- // ============================================================================
89
- // $$ TEXT STYLES & UTILITIES
90
- // ----------------------------------------------------------------------------
91
- // -- Font Family
92
- .ff-sans { font-family: var(--ff-sans) !important; }
93
- .ff-serif { font-family: var(--ff-serif) !important; }
94
- .ff-mono { font-family: var(--ff-mono) !important; }
95
- .ff-inherit { font-family: inherit !important; }
96
-
97
- // -- Font Weight
98
- .fw-normal { font-weight: 400 !important; }
99
- .fw-bold { font-weight: 600 !important; }
100
-
101
- // -- Font Styles
102
- .fs-normal { font-style: normal !important; }
103
- .fs-italic { font-style: italic !important; }
104
- .fs-unset { font-style: unset !important; }
105
-
106
- // -- Text Align
107
- #stacks-internals #responsify('.ta-left', { text-align: left !important; });
108
- #stacks-internals #responsify('.ta-center', { text-align: center !important; });
109
- #stacks-internals #responsify('.ta-right', { text-align: right !important; });
110
- .ta-justify { text-align: justify !important; }
111
- .ta-unset { text-align: unset !important; }
112
-
113
- // -- Text Decoration
114
- .td-none { text-decoration: none !important; }
115
- .td-underline { text-decoration: underline !important; }
116
-
117
- // -- Text Transform
118
- .tt-capitalize { text-transform: capitalize !important; }
119
- .tt-lowercase { text-transform: lowercase !important; }
120
- .tt-uppercase { text-transform: uppercase !important; }
121
- .tt-none { text-transform: none !important; }
122
- .tt-unset { text-transform: unset !important; }
123
-
124
- // -- Text Truncate
125
- .truncate {
126
- overflow: hidden;
127
- max-width: 100%;
128
- text-overflow: ellipsis !important;
129
- white-space: nowrap;
130
- }
131
-
132
- .v-truncate1 {
133
- .truncation(1);
134
- }
135
-
136
- .v-truncate2 {
137
- .truncation(2);
138
- }
139
-
140
- .v-truncate3 {
141
- .truncation(3);
142
- }
143
-
144
- .v-truncate4 {
145
- .truncation(4);
146
- }
147
-
148
- .v-truncate5 {
149
- .truncation(5);
150
- }
151
-
152
- .truncation(@count) {
153
- // Despite these all being webkit-specific properties, this works across
154
- // Safari, Chrome, Edge, and Firefox.
155
- display: -webkit-box;
156
- -webkit-line-clamp: @count;
157
- -webkit-box-orient: vertical;
158
- overflow: hidden;
159
- }
160
-
161
- .v-truncate-fade {
162
- overflow: hidden;
163
- -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 9em), transparent);
164
- mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 9em), transparent);
165
- max-height: calc(var(--lh-md) * 12em);
166
-
167
- &.v-truncate-fade__sm {
168
- -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 3em), transparent);
169
- mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 3em), transparent);
170
- max-height: calc(var(--lh-md) * 6em);
171
- }
172
-
173
- &.v-truncate-fade__lg {
174
- -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 21em), transparent);
175
- mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 21em), transparent);
176
- max-height: calc(var(--lh-md) * 24em);
177
- }
178
- }
179
-
180
- // -- Whitespace
181
- .ws-normal { white-space: normal !important; }
182
- .ws-nowrap { white-space: nowrap !important; }
183
- .ws-pre { white-space: pre !important; }
184
- .ws-pre-wrap { white-space: pre-wrap !important; }
185
- .ws-pre-line { white-space: pre-line !important; }
186
- .ws-unset { white-space: unset !important; }
187
-
188
- // -- Word Break
189
- .wb-normal { word-break: normal !important; }
190
- .wb-break-all { word-break: break-all !important; }
191
- .wb-keep-all { word-break: keep-all !important; }
192
- .wb-inherit { word-break: inherit !important; }
193
- .wb-initial { word-break: initial !important; }
194
- .wb-unset { word-break: unset !important; }
195
-
196
- // -- Overflow Wrap
197
- .ow-normal {
198
- overflow-wrap: normal !important;
199
- word-wrap: normal !important;
200
- }
201
-
202
- .ow-break-word {
203
- overflow-wrap: break-word !important;
204
- word-wrap: break-word !important;
205
- }
206
-
207
- .ow-inherit {
208
- overflow-wrap: inherit !important;
209
- word-wrap: inherit !important;
210
- }
211
-
212
- .ow-initial {
213
- overflow-wrap: initial !important;
214
- word-wrap: initial !important;
215
- }
216
-
217
- .ow-unset {
218
- overflow-wrap: unset !important;
219
- word-wrap: unset !important;
220
- }
221
-
222
- // -- Hyphenation
223
- .hyphens-none { hyphens: none !important; }
224
- .hyphens-auto {
225
- -ms-hyphens: auto !important;
226
- -webkit-hyphens: auto !important;
227
- hyphens: auto !important;
228
- }
229
- .hyphens-unset { hyphens: unset !important; }
230
-
231
- // -- Break word
232
- .break-word {
233
- word-break: break-word !important;
234
- word-wrap: break-word !important;
235
- overflow-wrap: break-word !important;
236
- -webkit-hyphens: auto !important;
237
- -moz-hyphens: auto !important;
238
- -ms-hyphens: auto !important;
239
- hyphens: auto !important;
240
- }
241
-
242
- // ============================================================================
243
- // $ LISTS
244
- // ----------------------------------------------------------------------------
245
- ul,
246
- ol {
247
- padding: 0;
248
- margin-left: 2.8em;
249
-
250
- ul,
251
- ol {
252
- margin-bottom: 0;
253
- }
254
- }
255
-
256
- ul { list-style-type: disc; }
257
- ol { list-style-type: decimal; }
258
-
259
- .list-reset {
260
- list-style: none;
261
- margin: 0;
262
- padding: 0;
263
- }
264
-
265
- // -- List Style Types
266
- .list-ls-none { list-style: none !important; }
267
- .list-ls-disc { list-style-type: disc !important; }
268
- .list-ls-decimal { list-style-type: decimal !important; }
269
- .list-ls-unset { list-style-type: unset !important; }
270
-
271
- // -- List Position
272
- .list-inside { list-style-position: inside !important; }
273
- .list-outside { list-style-position: outside !important; }
1
+ //
2
+ // STACK OVERFLOW
3
+ // TYPOGRAPHY
4
+ //
5
+ // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
6
+ // Stack Overflow. For documentation of all these classes and how to contribute,
7
+ // visit https://stackoverflow.design/
8
+ //
9
+ // TABLE OF CONTENTS
10
+ // • ATOMIC CLASSES
11
+ //
12
+ // ============================================================================
13
+ // $ TYPE RESETS
14
+ // ----------------------------------------------------------------------------
15
+ h1,
16
+ h2,
17
+ h3,
18
+ h4,
19
+ h5,
20
+ h6,
21
+ p {
22
+ margin-top: 0;
23
+ }
24
+
25
+ // ============================================================================
26
+ // $ TEXT SIZES
27
+ // ----------------------------------------------------------------------------
28
+ // Declare font sizes
29
+ .fs-display4 { font-size: var(--fs-display4) !important; }
30
+ .fs-display3 { font-size: var(--fs-display3) !important; }
31
+ .fs-display2 { font-size: var(--fs-display2) !important; }
32
+ .fs-display1 { font-size: var(--fs-display1) !important; }
33
+ .fs-headline2 { font-size: var(--fs-headline2) !important; }
34
+ .fs-headline1 { font-size: var(--fs-headline1) !important; }
35
+ .fs-title { font-size: var(--fs-title) !important; }
36
+ .fs-subheading { font-size: var(--fs-subheading) !important; }
37
+ .fs-body3 { font-size: var(--fs-body3) !important; }
38
+ .fs-body2 { font-size: var(--fs-body2) !important; }
39
+ .fs-body1 { font-size: var(--fs-body1) !important; }
40
+
41
+ .fs-caption,
42
+ .fs-category { font-size: var(--fs-caption) !important; }
43
+ .fs-fine { font-size: var(--fs-fine) !important; }
44
+
45
+ #stacks-internals #screen-sm({
46
+ .fs-display4 { font-size: 3.8rem !important; }
47
+ .fs-display3 { font-size: 3.3rem !important; }
48
+ .fs-display2 { font-size: 3rem !important; }
49
+ .fs-display1 { font-size: 2.6rem !important; }
50
+ .fs-headline2 { font-size: 2.3rem !important; }
51
+ .fs-headline1 { font-size: 2rem !important; }
52
+ .fs-title { font-size: 1.8rem !important; }
53
+ .fs-subheading { font-size: 1.6rem !important; }
54
+ .fs-body3 { font-size: 1.4rem !important; }
55
+ .fs-body2 { font-size: 1.3rem !important; }
56
+ }, @force-selector: true);
57
+
58
+ .fs-category {
59
+ font-weight: 600;
60
+ text-transform: uppercase;
61
+
62
+ // If a top border is desired
63
+ &.has-border {
64
+ width: 100%;
65
+ padding: var(--su4) 0;
66
+ border-top: 1px solid var(--bc-medium);
67
+ }
68
+ }
69
+
70
+ // ============================================================================
71
+ // $$ TEXT COLORS
72
+ // ----------------------------------------------------------------------------
73
+ .fc-dark { color: var(--fc-dark) !important; }
74
+ .fc-medium { color: var(--fc-medium) !important; }
75
+ .fc-light { color: var(--fc-light) !important; }
76
+
77
+ // ============================================================================
78
+ // $ LINE HEIGHTS
79
+ // ----------------------------------------------------------------------------
80
+ .lh-xs { line-height: var(--lh-xs) !important; }
81
+ .lh-sm { line-height: var(--lh-sm) !important; }
82
+ .lh-md { line-height: var(--lh-md) !important; }
83
+ .lh-lg { line-height: var(--lh-lg) !important; }
84
+ .lh-xl { line-height: var(--lh-xl) !important; }
85
+ .lh-xxl { line-height: var(--lh-xxl) !important; }
86
+ .lh-unset { line-height: initial !important; }
87
+
88
+ // ============================================================================
89
+ // $$ TEXT STYLES & UTILITIES
90
+ // ----------------------------------------------------------------------------
91
+ // -- Font Family
92
+ .ff-sans { font-family: var(--ff-sans) !important; }
93
+ .ff-serif { font-family: var(--ff-serif) !important; }
94
+ .ff-mono { font-family: var(--ff-mono) !important; }
95
+ .ff-inherit { font-family: inherit !important; }
96
+
97
+ // -- Font Weight
98
+ .fw-normal { font-weight: 400 !important; }
99
+ .fw-bold { font-weight: 600 !important; }
100
+
101
+ // -- Font Styles
102
+ .fs-normal { font-style: normal !important; }
103
+ .fs-italic { font-style: italic !important; }
104
+ .fs-unset { font-style: unset !important; }
105
+
106
+ // -- Text Align
107
+ #stacks-internals #responsify('.ta-left', { text-align: left !important; });
108
+ #stacks-internals #responsify('.ta-center', { text-align: center !important; });
109
+ #stacks-internals #responsify('.ta-right', { text-align: right !important; });
110
+ .ta-justify { text-align: justify !important; }
111
+ .ta-unset { text-align: unset !important; }
112
+
113
+ // -- Text Decoration
114
+ .td-none { text-decoration: none !important; }
115
+ .td-underline { text-decoration: underline !important; }
116
+
117
+ // -- Text Transform
118
+ .tt-capitalize { text-transform: capitalize !important; }
119
+ .tt-lowercase { text-transform: lowercase !important; }
120
+ .tt-uppercase { text-transform: uppercase !important; }
121
+ .tt-none { text-transform: none !important; }
122
+ .tt-unset { text-transform: unset !important; }
123
+
124
+ // -- Text Truncate
125
+ .truncate {
126
+ overflow: hidden;
127
+ max-width: 100%;
128
+ text-overflow: ellipsis !important;
129
+ white-space: nowrap;
130
+ }
131
+
132
+ .v-truncate1 {
133
+ .truncation(1);
134
+ }
135
+
136
+ .v-truncate2 {
137
+ .truncation(2);
138
+ }
139
+
140
+ .v-truncate3 {
141
+ .truncation(3);
142
+ }
143
+
144
+ .v-truncate4 {
145
+ .truncation(4);
146
+ }
147
+
148
+ .v-truncate5 {
149
+ .truncation(5);
150
+ }
151
+
152
+ .truncation(@count) {
153
+ // Despite these all being webkit-specific properties, this works across
154
+ // Safari, Chrome, Edge, and Firefox.
155
+ display: -webkit-box;
156
+ -webkit-line-clamp: @count;
157
+ -webkit-box-orient: vertical;
158
+ overflow: hidden;
159
+ }
160
+
161
+ .v-truncate-fade {
162
+ overflow: hidden;
163
+ -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 9em), transparent);
164
+ mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 9em), transparent);
165
+ max-height: calc(var(--lh-md) * 12em);
166
+
167
+ &.v-truncate-fade__sm {
168
+ -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 3em), transparent);
169
+ mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 3em), transparent);
170
+ max-height: calc(var(--lh-md) * 6em);
171
+ }
172
+
173
+ &.v-truncate-fade__lg {
174
+ -webkit-mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 21em), transparent);
175
+ mask-image: linear-gradient(180deg, #000 calc(var(--lh-md) * 21em), transparent);
176
+ max-height: calc(var(--lh-md) * 24em);
177
+ }
178
+ }
179
+
180
+ // -- Whitespace
181
+ .ws-normal { white-space: normal !important; }
182
+ .ws-nowrap { white-space: nowrap !important; }
183
+ .ws-pre { white-space: pre !important; }
184
+ .ws-pre-wrap { white-space: pre-wrap !important; }
185
+ .ws-pre-line { white-space: pre-line !important; }
186
+ .ws-unset { white-space: unset !important; }
187
+
188
+ // -- Word Break
189
+ .wb-normal { word-break: normal !important; }
190
+ .wb-break-all { word-break: break-all !important; }
191
+ .wb-keep-all { word-break: keep-all !important; }
192
+ .wb-inherit { word-break: inherit !important; }
193
+ .wb-initial { word-break: initial !important; }
194
+ .wb-unset { word-break: unset !important; }
195
+
196
+ // -- Overflow Wrap
197
+ .ow-normal {
198
+ overflow-wrap: normal !important;
199
+ word-wrap: normal !important;
200
+ }
201
+
202
+ .ow-break-word {
203
+ overflow-wrap: break-word !important;
204
+ word-wrap: break-word !important;
205
+ }
206
+
207
+ .ow-inherit {
208
+ overflow-wrap: inherit !important;
209
+ word-wrap: inherit !important;
210
+ }
211
+
212
+ .ow-initial {
213
+ overflow-wrap: initial !important;
214
+ word-wrap: initial !important;
215
+ }
216
+
217
+ .ow-unset {
218
+ overflow-wrap: unset !important;
219
+ word-wrap: unset !important;
220
+ }
221
+
222
+ // -- Hyphenation
223
+ .hyphens-none { hyphens: none !important; }
224
+ .hyphens-auto {
225
+ -ms-hyphens: auto !important;
226
+ -webkit-hyphens: auto !important;
227
+ hyphens: auto !important;
228
+ }
229
+ .hyphens-unset { hyphens: unset !important; }
230
+
231
+ // -- Break word
232
+ .break-word {
233
+ word-break: break-word !important;
234
+ word-wrap: break-word !important;
235
+ overflow-wrap: break-word !important;
236
+ -webkit-hyphens: auto !important;
237
+ -moz-hyphens: auto !important;
238
+ -ms-hyphens: auto !important;
239
+ hyphens: auto !important;
240
+ }
241
+
242
+ // ============================================================================
243
+ // $ LISTS
244
+ // ----------------------------------------------------------------------------
245
+ ul,
246
+ ol {
247
+ padding: 0;
248
+ margin-left: 2.8em;
249
+
250
+ ul,
251
+ ol {
252
+ margin-bottom: 0;
253
+ }
254
+ }
255
+
256
+ ul { list-style-type: disc; }
257
+ ol { list-style-type: decimal; }
258
+
259
+ .list-reset {
260
+ list-style: none;
261
+ margin: 0;
262
+ padding: 0;
263
+ }
264
+
265
+ // -- List Style Types
266
+ .list-ls-none { list-style: none !important; }
267
+ .list-ls-disc { list-style-type: disc !important; }
268
+ .list-ls-decimal { list-style-type: decimal !important; }
269
+ .list-ls-unset { list-style-type: unset !important; }
270
+
271
+ // -- List Position
272
+ .list-inside { list-style-position: inside !important; }
273
+ .list-outside { list-style-position: outside !important; }