@qrsln/lootstrap 22.2.2-beta.0 → 22.3.1-beta.0

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 +17 -6
  2. package/dist/css/lootstrap.css +10649 -9826
  3. package/dist/css/lootstrap.css.map +1 -1
  4. package/dist/css/lootstrap.min.css +3 -3
  5. package/package.json +5 -1
  6. package/scss/Abstracts/Functions/_color-customized.scss +62 -0
  7. package/scss/Abstracts/Functions/_color.scss +108 -65
  8. package/scss/Abstracts/Functions/_helpers.scss +2 -2
  9. package/scss/Abstracts/Functions/_shadow.scss +4 -4
  10. package/scss/Abstracts/Mixins/_color.scss +126 -136
  11. package/scss/Abstracts/Mixins/_theme.scss +163 -0
  12. package/scss/Abstracts/_dir-functions.scss +1 -0
  13. package/scss/Abstracts/_dir-mixins.scss +1 -4
  14. package/scss/Abstracts/_variables.scss +96 -35
  15. package/scss/Architecture/Components/TODO/_tables.scss +3 -3
  16. package/scss/Architecture/Components/_alert.scss +93 -19
  17. package/scss/Architecture/Components/_badge.scss +40 -0
  18. package/scss/Architecture/Components/_breadcrumb.scss +11 -10
  19. package/scss/Architecture/Components/_button-close.scss +11 -2
  20. package/scss/Architecture/Components/_buttons.scss +22 -21
  21. package/scss/Architecture/Components/_calendar.scss +67 -55
  22. package/scss/Architecture/Components/_card.scss +9 -9
  23. package/scss/Architecture/Components/_caret.scss +20 -20
  24. package/scss/Architecture/Components/_dialog.scss +10 -7
  25. package/scss/Architecture/Components/_list.scss +13 -13
  26. package/scss/Architecture/Components/_nav.scss +14 -12
  27. package/scss/Architecture/Components/_pagination.scss +16 -10
  28. package/scss/Architecture/Components/_progress.scss +6 -5
  29. package/scss/Architecture/Components/_rating.scss +15 -14
  30. package/scss/Architecture/Components/_scrollbar.scss +59 -29
  31. package/scss/Architecture/Components/_spinners.scss +0 -1
  32. package/scss/Architecture/Components/_timeline.scss +6 -5
  33. package/scss/Architecture/Components/_timer.scss +5 -4
  34. package/scss/Architecture/Components/_toasts.scss +72 -12
  35. package/scss/Architecture/Components/_tooltip.scss +135 -0
  36. package/scss/Architecture/Components/_tree-view.scss +13 -12
  37. package/scss/Architecture/Forms/_form-check.scss +82 -81
  38. package/scss/Architecture/Forms/_input-fields.scss +36 -37
  39. package/scss/Architecture/Forms/_selects.scss +3 -1
  40. package/scss/Architecture/{_anim.scss → Roots/_anim.scss} +17 -7
  41. package/scss/Architecture/Roots/_avatar.scss +296 -0
  42. package/scss/Architecture/Roots/_classified.scss +67 -0
  43. package/scss/Architecture/{_reboot.scss → Roots/_reboot.scss} +6 -9
  44. package/scss/Architecture/Roots/_root.scss +49 -0
  45. package/scss/Architecture/Roots/_shape.scss +92 -0
  46. package/scss/Architecture/Roots/_skeleton.scss +271 -0
  47. package/scss/Architecture/{Svg/_icons.scss → Roots/_svg.scss} +0 -0
  48. package/scss/Architecture/Utils/_border.scss +3 -1
  49. package/scss/Architecture/Utils/_color.scss +71 -88
  50. package/scss/Architecture/Utils/_filters.scss +4 -1
  51. package/scss/Architecture/Utils/_position.scss +43 -0
  52. package/scss/Architecture/Utils/_spacing.scss +7 -21
  53. package/scss/Architecture/Utils/_text.scss +42 -109
  54. package/scss/Architecture/Utils/_utilities.scss +55 -21
  55. package/scss/Architecture/__color-scheme.scss +80 -0
  56. package/scss/Architecture/__dir-components.scss +5 -7
  57. package/scss/Architecture/__dir-roots.scss +17 -0
  58. package/scss/Architecture/__dir-utils.scss +2 -1
  59. package/scss/Architecture/_theme.scss +2 -1
  60. package/scss/_header.scss +2 -2
  61. package/scss/lootstrap.scss +2 -5
  62. package/dist/css/test.css +0 -275
  63. package/dist/css/test.css.map +0 -1
  64. package/scss/Architecture/Components/TODO/_badge.scss +0 -7
  65. package/scss/Architecture/Components/TODO/_tooltip.scss +0 -7
  66. package/scss/Architecture/Components/_themed.scss +0 -45
  67. package/scss/Architecture/__dir-svg.scss +0 -7
  68. package/scss/Architecture/__theme-colors.scss +0 -51
  69. package/scss/Architecture/__theme-customized.scss +0 -51
  70. package/scss/Architecture/_root.scss +0 -45
  71. package/scss/test.scss +0 -37
@@ -4,9 +4,8 @@
4
4
  // ===========================================================================
5
5
  */
6
6
 
7
- @import "../_theme-colors";
8
-
9
-
7
+ $Customized: false;
8
+ @import "../_color-scheme";
10
9
 
11
10
  /*
12
11
  // Sizing
@@ -119,14 +118,14 @@ $font-size-lg: 1.25rem;
119
118
  // Focused input style
120
119
  &:focus:not([readonly]) {
121
120
  box-shadow: $Shadow-inner;
122
- border-color: $bg-Active;
121
+ border-color: $Bg-accent;
123
122
 
124
- color: $fg-Lightest;
125
- background: $bg-Lightest;
123
+ //color: $Fg-lightest;
124
+ //background-color: $Bg-lightest;
126
125
 
127
126
  // Focused label style
128
127
  + label {
129
- color: $bg-Active;
128
+ color: $Bg-accent;
130
129
  }
131
130
  }
132
131
 
@@ -141,24 +140,24 @@ $font-size-lg: 1.25rem;
141
140
  &:not(:disabled):not(:read-only) {
142
141
  /* Hover */
143
142
  &:hover {
144
- border-bottom-color: $bg-Active;
143
+ border-bottom-color: $Bg-accent;
145
144
  }
146
145
 
147
146
  /* Focus */
148
147
  &:focus {
149
148
  + .Form-label {
150
- color: $bg-Active;
149
+ color: $Bg-accent;
151
150
  }
152
151
  }
153
152
  }
154
153
 
155
154
  /* Disabled */
156
155
  &:disabled {
157
- //border-bottom-color: $bg-Dark;
158
- color: $fg-Muted;
156
+ //border-bottom-color: $Bg-lighter;
157
+ color: $Fg-muted;
159
158
 
160
159
  + .Form-label {
161
- color: $fg-Muted;
160
+ color: $Fg-muted;
162
161
  }
163
162
  }
164
163
  }
@@ -168,21 +167,21 @@ $font-size-lg: 1.25rem;
168
167
 
169
168
  > option {
170
169
  //border-radius: 25px;
171
- color: $fg-Lightest;
172
- background: $bg-Lightest;
170
+ color: $Fg-lightest;
171
+ background: $Bg-lightest;
173
172
 
174
173
  padding: .5rem;
175
174
  margin: 3px 0;
176
175
  box-shadow: $Shadow-inner;
177
176
 
178
177
  &:checked {
179
- background: $bg-Active;
180
- color: $fg-Active;
178
+ background: $Bg-accent;
179
+ color: $Fg-accent;
181
180
  }
182
181
 
183
182
  &:hover, &:active {
184
- color: $fg-Dark;
185
- background: $bg-Dark;
183
+ color: $Fg-lighter;
184
+ background-color: $Bg-lighter;
186
185
  }
187
186
  }
188
187
 
@@ -197,7 +196,7 @@ $font-size-lg: 1.25rem;
197
196
  .Form-textarea {
198
197
  $textarea-line-height: 2em;
199
198
  $gradient-height: calc(2em - 1px);
200
- $line-color: hsla($Border-color-hsl, var(--#{$var-Prefix}border-alpha, 1));;
199
+ $line-color: hsla($Border-hsl, var(--#{$var-Prefix}border-alpha));;
201
200
 
202
201
  $background-gradient: linear-gradient(transparent, transparent $gradient-height, $line-color 0px) ;
203
202
 
@@ -226,7 +225,7 @@ $font-size-lg: 1.25rem;
226
225
  left: 0;
227
226
 
228
227
  pointer-events: none;
229
- color: hsla($bg-Active-hsl, 0.6);
228
+ color: hsla($Bg-accent-hsl, 0.6);
230
229
  cursor: text;
231
230
 
232
231
  transition: transform .2s ease-out, color .2s ease-out;
@@ -245,9 +244,9 @@ $font-size-lg: 1.25rem;
245
244
  padding-top: 6px;
246
245
  line-height: 1.5;
247
246
 
248
- $border-passive-color: hsla($bg-Active-hsl, 0.38);
249
- $border-hover-color: hsla($bg-Active-hsl, 0.87);
250
- $border-active-color: $bg-Active;
247
+ $border-passive-color: hsla($Bg-accent-hsl, 0.38);
248
+ $border-hover-color: hsla($Bg-accent-hsl, 0.87);
249
+ $border-active-color: $Bg-accent;
251
250
 
252
251
  /* Input, Textarea */
253
252
  input, textarea, select {
@@ -320,7 +319,7 @@ $font-size-lg: 1.25rem;
320
319
  height: 8px;
321
320
 
322
321
  margin-top: 6px;
323
- //border-top: 1px solid hsla($bg-Active-hsl, 0.6);
322
+ //border-top: 1px solid hsla($Bg-accent-hsl, 0.6);
324
323
  border-top: 1px solid transparent;
325
324
 
326
325
  pointer-events: none;
@@ -371,23 +370,23 @@ $font-size-lg: 1.25rem;
371
370
  /* Focus */
372
371
  &:focus {
373
372
  border-color: transparent $border-active-color $border-active-color;
374
- box-shadow: inset 1px 0 $bg-Active, inset -1px 0 $bg-Active, inset 0 -1px $bg-Active;
373
+ box-shadow: inset 1px 0 $Bg-accent, inset -1px 0 $Bg-accent, inset 0 -1px $Bg-accent;
375
374
  outline: none;
376
375
 
377
376
  + .Form-label {
378
- color: $bg-Active;
377
+ color: $Bg-accent;
379
378
 
380
379
  &:before, &:after {
381
380
  border-top-color: $border-active-color;
382
- box-shadow: inset 0 1px $bg-Active;
381
+ box-shadow: inset 0 1px $Bg-accent;
383
382
  }
384
383
  }
385
384
  }
386
385
 
387
386
  /* Disabled */
388
387
  &:disabled, &:disabled + .Form-label {
389
- //border-color: transparent hsla($bg-Active-hsl, 0.38) hsla($bg-Active-hsl, 0.38) !important;
390
- color: hsla($bg-Active-hsl, 0.38);
388
+ //border-color: transparent hsla($Bg-accent-hsl, 0.38) hsla($Bg-accent-hsl, 0.38) !important;
389
+ color: hsla($Bg-accent-hsl, 0.38);
391
390
  pointer-events: none;
392
391
  }
393
392
  }
@@ -397,21 +396,21 @@ $font-size-lg: 1.25rem;
397
396
 
398
397
  > option {
399
398
  //border-radius: 25px;
400
- //color: $fg-Lightest;
401
- //background: $bg-Lightest;
399
+ //color: $Fg-lightest;
400
+ //background: $Bg-lightest;
402
401
 
403
402
  padding: .5rem;
404
403
  margin: 3px 0;
405
404
  box-shadow: $Shadow-inner;
406
405
 
407
406
  &:checked {
408
- background: $bg-Active;
409
- color: $fg-Active;
407
+ background: $Bg-accent;
408
+ color: $Fg-accent;
410
409
  }
411
410
 
412
411
  &:hover, &:active {
413
- color: $fg-Dark;
414
- background: $bg-Dark;
412
+ color: $Fg-lighter;
413
+ background-color: $Bg-lighter;
415
414
  }
416
415
  }
417
416
 
@@ -425,7 +424,7 @@ $font-size-lg: 1.25rem;
425
424
  .Form-textarea {
426
425
  $textarea-line-height: 2em;
427
426
  $gradient-height: calc(2em - 1px);
428
- $line-color: hsla($Border-color-hsl, var(--#{$var-Prefix}border-alpha, 1));;
427
+ $line-color: hsla($Border-hsl, var(--#{$var-Prefix}border-alpha));
429
428
 
430
429
  $background-gradient: linear-gradient(transparent, transparent $gradient-height, $line-color 0px) ;
431
430
 
@@ -455,7 +454,7 @@ $font-size-lg: 1.25rem;
455
454
  left: 0;
456
455
 
457
456
  pointer-events: none;
458
- color: hsla($bg-Active-hsl, 0.6);
457
+ color: hsla($Bg-accent-hsl, 0.6);
459
458
  cursor: text;
460
459
 
461
460
  //font-size: 75%;
@@ -3,7 +3,9 @@
3
3
  // Forms - Select
4
4
  // ===========================================================================
5
5
  */
6
- @import "../_theme-colors";
6
+
7
+ $Customized: false;
8
+ @import "../_color-scheme";
7
9
 
8
10
  /*
9
11
  // Select Not input... ul li
@@ -6,9 +6,9 @@
6
6
  // Duration
7
7
  */
8
8
 
9
- @each $val in (500, 750, 2000, 3000) {
9
+ @each $val in (100, 200, 300, 500, 750, 1000, 1500) {
10
10
  .Anim-dur-#{$val}ms {
11
- --anim-dur: #{$val}ms;
11
+ --#{$var-Prefix}anim-dur: #{$val}ms;
12
12
  }
13
13
  }
14
14
 
@@ -19,9 +19,9 @@
19
19
  // Iteration
20
20
  */
21
21
 
22
- @each $val in (1, 2, 3, 4, 5) {
22
+ @each $val in (infinite, 1, 2, 3, 4, 5) {
23
23
  .Anim-repeat-#{$val} {
24
- --anim-iteration: #{$val};
24
+ --#{$var-Prefix}anim-iteration: #{$val};
25
25
  }
26
26
  }
27
27
 
@@ -33,8 +33,8 @@
33
33
  */
34
34
 
35
35
  .Anim {
36
- animation-duration: #{var(--anim-dur, 1s)};
37
- animation-iteration-count: #{var(--anim-iteration, infinite)};
36
+ animation-duration: #{var(--#{$var-Prefix}anim-dur, 500ms)};
37
+ animation-iteration-count: #{var(--#{$var-Prefix}anim-iteration, 1)};
38
38
 
39
39
  animation-timing-function: linear;
40
40
  animation-fill-mode: both
@@ -115,9 +115,12 @@
115
115
  //to {
116
116
  // transform: rotate(360deg);
117
117
  //}
118
- 100% { transform: rotate(360deg); }
118
+ 100% {
119
+ transform: rotate(360deg);
120
+ }
119
121
  }
120
122
 
123
+ //noinspection CssInvalidFunction
121
124
  @keyframes spin-CCW {
122
125
  0% {
123
126
  transform: rotateZ(0deg);
@@ -169,6 +172,7 @@
169
172
  }
170
173
 
171
174
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/rubberBand.css
175
+ //noinspection CssInvalidFunction
172
176
  @keyframes rubberBand {
173
177
  from {
174
178
  transform: scale3d(1, 1, 1);
@@ -200,6 +204,7 @@
200
204
  }
201
205
 
202
206
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/bounce.css
207
+ //noinspection CssInvalidFunction
203
208
  @keyframes bounce {
204
209
  from,
205
210
  20%,
@@ -231,6 +236,7 @@
231
236
  }
232
237
 
233
238
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/jello.css
239
+ //noinspection CssInvalidFunction
234
240
  @keyframes jello {
235
241
  from,
236
242
  11.1%,
@@ -268,6 +274,7 @@
268
274
  }
269
275
 
270
276
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/swing.css
277
+ //noinspection CssInvalidFunction
271
278
  @keyframes swing {
272
279
  20% {
273
280
  transform: rotate3d(0, 0, 1, 15deg);
@@ -291,6 +298,7 @@
291
298
  }
292
299
 
293
300
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/shakeX.css
301
+ //noinspection CssInvalidFunction
294
302
  @keyframes shakeX {
295
303
  from,
296
304
  to {
@@ -314,6 +322,7 @@
314
322
  }
315
323
 
316
324
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/shakeY.css
325
+ //noinspection CssInvalidFunction
317
326
  @keyframes shakeY {
318
327
  from,
319
328
  to {
@@ -337,6 +346,7 @@
337
346
  }
338
347
 
339
348
  // credit: https://github.com/animate-css/animate.css/blob/main/source/attention_seekers/wobble.css
349
+ //noinspection CssInvalidFunction
340
350
  @keyframes wobble {
341
351
  from {
342
352
  transform: translate3d(0, 0, 0);
@@ -0,0 +1,296 @@
1
+ // ===========================================================================
2
+ // Layout - Avatar
3
+ // https://codepen.io/avenart/pen/dypjQmm
4
+ // https://ishadeed.com/article/thinking-about-the-cut-out-effect/
5
+ // ===========================================================================
6
+
7
+ $Danger: hsl(354, 66%, 54%) !default; // #D73C4C based mixed
8
+ $Lime: hsl(120, 100%, 50%) !default;
9
+
10
+ // These class using with Shape/Sqr class
11
+ .Avatar-CSSMask, .Avatar-ClipPath,
12
+ .Avatar {
13
+ .Avatar-badge {
14
+ position: absolute;
15
+ right: 7%;
16
+ bottom: 7%;
17
+ width: 16%;
18
+ height: 16%;
19
+
20
+ //right: 6%;
21
+ //bottom: 6%;
22
+ //width: 18%;
23
+ //height: 18%;
24
+
25
+ background: $Danger;
26
+ border-radius: 50%;
27
+
28
+ &.Online {
29
+ background: $Lime;
30
+ }
31
+ }
32
+ }
33
+
34
+ /*
35
+ // Avatar - with CSS Mask [radial-gradient]
36
+ */
37
+
38
+ .Avatar-CSSMask {
39
+ img {
40
+ width: 100%;
41
+ height: 100%;
42
+
43
+ // mask-image: radial-gradient(circle 20px at calc(100% - 30px) calc(100% - 30px), transparent 30px, #000 0);
44
+ mask-image: radial-gradient(circle at calc(100% - calc(15% - 0px)) calc(100% - calc(15% - 0px)), transparent calc(10% - 2px), #000 0);
45
+
46
+ object-fit: cover;
47
+ border-radius: 50%;
48
+ }
49
+ }
50
+
51
+ /*
52
+ // Avatar - with Svg clipPath
53
+ */
54
+
55
+ .Avatar-ClipPath {
56
+
57
+ &:after {
58
+ content: "";
59
+ position: absolute;
60
+ left: 0;
61
+ top: 0;
62
+ width: 100%;
63
+ height: 100%;
64
+ border-radius: 50%;
65
+ border: 1px solid;
66
+ opacity: 0.2;
67
+ clip-path: url("#clipPathId");
68
+ }
69
+
70
+ img {
71
+ display: block;
72
+ width: 100%;
73
+ height: 100%;
74
+ object-fit: cover;
75
+ border-radius: 50%;
76
+ clip-path: url("#clipPathId");
77
+ }
78
+
79
+ .Avatar-badge {
80
+ right: 6%;
81
+ bottom: 5%;
82
+ width: 17%;
83
+ height: 17%;
84
+ }
85
+ }
86
+
87
+ /*
88
+ // Avatar - with SVG Mask
89
+ */
90
+
91
+ .Avatar, .Avatar-group {
92
+
93
+ &.Sqr {
94
+ margin: 0;
95
+ }
96
+
97
+ //noinspection CssUnknownProperty
98
+ svg {
99
+ width: 100%;
100
+ height: 100%;
101
+
102
+ mask {
103
+ circle[fill="white"] {
104
+ cx: calc(100% / 2); // 50%
105
+ cy: calc(100% / 2); // 50%
106
+ r: calc(100% / 2 - 3%); // 47%
107
+ }
108
+
109
+ rect[fill="white"] {
110
+ width: 80%;
111
+ height: 80%;
112
+
113
+ cy: 18;
114
+ x: 10%;
115
+ y: 10%;
116
+ }
117
+ }
118
+
119
+ g {
120
+ image {
121
+ width: 100%;
122
+ height: 100%;
123
+
124
+ x: 0;
125
+ y: 0;
126
+ preserveAspectRatio: "xMidYMid slice";
127
+ }
128
+
129
+ text {
130
+ fill: currentColor;
131
+ dominant-baseline: central;
132
+ text-anchor: middle;
133
+ }
134
+
135
+ circle.Avatar-border,
136
+ rect.Avatar-border {
137
+ fill: none;
138
+ stroke: rgba(0, 0, 0, 0.1);
139
+ stroke-width: 10%;
140
+ }
141
+
142
+ circle {
143
+ cx: calc(100% / 2); // 50%
144
+ cy: calc(100% / 2); // 50%
145
+ r: calc(100% / 2 - 3%); // 47%
146
+ }
147
+
148
+ rect {
149
+ width: 80%;
150
+ height: 80%;
151
+
152
+ cy: 18;
153
+ x: 10%;
154
+ y: 10%;
155
+ }
156
+ }
157
+
158
+ }
159
+ }
160
+
161
+ .Avatar {
162
+ //noinspection CssUnknownProperty
163
+ &.Sign-bottom {
164
+ svg mask circle[fill="black"] {
165
+ cx: 85%; // 85%
166
+ cy: 85%; // 85%
167
+ r: 10%; // 10%
168
+ }
169
+ }
170
+
171
+ //noinspection CssUnknownProperty
172
+ &.Sign-top {
173
+ svg mask circle[fill="black"] {
174
+ cx: 85%; // 85%
175
+ cy: 15%; // 85%
176
+ r: 10%; // 10%
177
+ }
178
+
179
+ .Avatar-badge {
180
+ right: 7%;
181
+ top: 7%;
182
+ width: 16%;
183
+ height: 16%;
184
+ }
185
+ }
186
+ }
187
+
188
+ /*
189
+ // Avatar Group - with SVG Mask
190
+ */
191
+
192
+ //noinspection CssUnknownProperty
193
+ .Avatar-group {
194
+ position: relative;
195
+ display: flex;
196
+
197
+ &:not(&.Avatar-group-reversed) {
198
+ svg mask circle[fill="black"] {
199
+ cx: -25%;
200
+ cy: 50%;
201
+ r: 50%;
202
+ }
203
+
204
+ // Specific Groups
205
+ &.Twin, &.Triplet, &.Quadruplet, {
206
+
207
+ &.Twin {
208
+ .Sqr:not(:first-child) {
209
+ margin-left: -15%;
210
+ }
211
+ }
212
+
213
+ &.Triplet {
214
+ .Sqr:not(:first-child) {
215
+ margin-left: -10%;
216
+ }
217
+ }
218
+
219
+ &.Quadruplet {
220
+ .Sqr:not(:first-child) {
221
+ margin-left: -8%;
222
+ }
223
+ }
224
+ }
225
+
226
+ &:not(.Twin):not(.Triplet):not(.Quadruplet) {
227
+ .Sqr {
228
+ &:not(:first-child) {
229
+ margin-left: -8%;
230
+
231
+ &:nth-child(n+4) {
232
+ margin-left: -21%; // -6.25%
233
+
234
+ svg mask circle[fill="black"] {
235
+ cx: 23%; // 10%
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }
241
+ }
242
+
243
+ &.Avatar-group-reversed {
244
+ svg mask circle[fill="black"] {
245
+ cx: 125%;
246
+ cy: 50%;
247
+ r: 50%;
248
+ }
249
+
250
+ // Specific Groups
251
+ &.Twin, &.Triplet, &.Quadruplet, {
252
+
253
+ &.Twin {
254
+ .Sqr:not(:last-child) {
255
+ margin-right: -15%;
256
+ }
257
+ }
258
+
259
+ &.Triplet {
260
+ .Sqr:not(:last-child) {
261
+ margin-right: -10%;
262
+ }
263
+ }
264
+
265
+ &.Quadruplet {
266
+ .Sqr:not(:last-child) {
267
+ margin-right: -8%;
268
+ }
269
+ }
270
+ }
271
+
272
+ &:not(.Twin):not(.Triplet):not(.Quadruplet) {
273
+ svg mask circle[fill="black"] {
274
+ cx: 77%;
275
+ }
276
+
277
+ .Sqr {
278
+ //noinspection CssUnknownProperty
279
+ &:not(:last-child) {
280
+ margin-right: -21%; // -6.25%
281
+
282
+ // last 3 child => -n+3
283
+ &:nth-last-child(-n+3) {
284
+ margin-right: -8%;
285
+
286
+ svg mask circle[fill="black"] {
287
+ cx: 124%;
288
+ }
289
+ }
290
+ }
291
+ }
292
+
293
+ }
294
+
295
+ }
296
+ }
@@ -0,0 +1,67 @@
1
+ // ===========================================================================
2
+ // Layout - Shapes
3
+ // ===========================================================================
4
+ // https://codepen.io/adamruf/pen/GZwdrY
5
+
6
+ $Bg-accent-hsl: var(--ls-bg-accent-hsl);
7
+ $color: hsla($Bg-accent-hsl, 1);
8
+
9
+ .Classified {
10
+ user-select: none;
11
+
12
+ &.Blurred {
13
+ span {
14
+ filter: blur(5px);
15
+ /*
16
+ For situations that require better cross-browser support, the blur effect is easily reproduced with transparent text + text-shadow
17
+ color: transparent;
18
+ text-shadow: 0 0 12px rgba(0,0,0,0.8);
19
+ */
20
+ white-space: break-spaces;
21
+ }
22
+ }
23
+
24
+ &.InvisibleInk {
25
+ span {
26
+ background: transparent;
27
+ //color: transparent;
28
+ color: rgba(0, 0, 0, 0);
29
+
30
+ white-space: break-spaces;
31
+ }
32
+ }
33
+
34
+ /*
35
+ // Redacted
36
+ */
37
+
38
+ &.Redacted {
39
+ span {
40
+ position: relative;
41
+ //white-space: break-spaces;
42
+ white-space: pre;
43
+
44
+ &:after {
45
+ position: absolute;
46
+ content: " ";
47
+ background: $color;
48
+ border-radius: 0.25em;
49
+ box-shadow: 0 0 1px hsla($Bg-accent-hsl, 0.35);
50
+ width: 100%;
51
+ height: 1.2em;
52
+ left: 0;
53
+ transform: skewY(-10deg) rotate(10deg);
54
+ }
55
+ }
56
+ }
57
+
58
+ &.Redacted-soft {
59
+ span {
60
+ color: $color;
61
+ background: $color;
62
+ height: 1.2em;
63
+
64
+ white-space: break-spaces;
65
+ }
66
+ }
67
+ }
@@ -99,12 +99,12 @@ $headings-color: null !default;
99
99
  $font-size-sm: $font-size-base * .875 !default;
100
100
  $font-size-lg: $font-size-base * 1.25 !default;
101
101
 
102
- $h1-font-size: $font-size-base * 2.5 !default;
103
- $h2-font-size: $font-size-base * 2 !default;
104
- $h3-font-size: $font-size-base * 1.75 !default;
105
- $h4-font-size: $font-size-base * 1.5 !default;
106
- $h5-font-size: $font-size-base * 1.25 !default;
107
- $h6-font-size: $font-size-base !default;
102
+ //$h1-font-size: $font-size-base * 2.5 !default;
103
+ //$h2-font-size: $font-size-base * 2 !default;
104
+ //$h3-font-size: $font-size-base * 1.75 !default;
105
+ //$h4-font-size: $font-size-base * 1.5 !default;
106
+ //$h5-font-size: $font-size-base * 1.25 !default;
107
+ //$h6-font-size: $font-size-base !default;
108
108
 
109
109
  h1 {
110
110
  @extend %heading;
@@ -288,9 +288,6 @@ sup {
288
288
  @return if($weight > 0, shade-color($color, $weight), tint-color($color, -$weight));
289
289
  }
290
290
 
291
-
292
- $Primary: hsl(260, 81%, 38%) !default;
293
-
294
291
  $link-color: $Primary !default;
295
292
  $link-decoration: underline !default;
296
293
  $link-shade-percentage: 20% !default;