@bodynarf/react.components 1.13.8 → 1.14.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 (132) hide show
  1. package/changelog.md +55 -0
  2. package/components/accordion/component/index.js +1 -1
  3. package/components/accordion/component/style.css +21 -0
  4. package/components/anchor/component/style.css +12 -0
  5. package/components/button/component/style.css +10 -0
  6. package/components/dropdown/component/style.css +101 -0
  7. package/components/dropdown/components/compact/index.d.ts.map +1 -1
  8. package/components/dropdown/components/compact/index.js +3 -3
  9. package/components/dropdown/components/label/components/empty/index.js +1 -1
  10. package/components/dropdown/components/label/components/withSearch/style.css +21 -0
  11. package/components/dropdown/types.d.ts +6 -6
  12. package/components/dropdown/types.d.ts.map +1 -1
  13. package/components/file/component/styles.css +74 -0
  14. package/components/icon/component/style.css +19 -0
  15. package/components/index.d.ts +14 -2
  16. package/components/index.d.ts.map +1 -1
  17. package/components/index.js +14 -2
  18. package/components/modal/component/index.d.ts +7 -0
  19. package/components/modal/component/index.d.ts.map +1 -0
  20. package/components/modal/component/index.js +42 -0
  21. package/components/modal/component/style.css +32 -0
  22. package/components/modal/component/style.scss +42 -0
  23. package/components/modal/index.d.ts +3 -0
  24. package/components/modal/index.d.ts.map +1 -0
  25. package/components/modal/index.js +2 -0
  26. package/components/modal/types.d.ts +44 -0
  27. package/components/modal/types.d.ts.map +1 -0
  28. package/components/modal/types.js +1 -0
  29. package/components/multiselect/component/style.css +20 -0
  30. package/components/multiselect/components/withoutLabel/index.d.ts.map +1 -1
  31. package/components/multiselect/components/withoutLabel/index.js +5 -5
  32. package/components/primitives/checkbox/component/style.css +19 -0
  33. package/components/primitives/color/component/style.css +15 -0
  34. package/components/primitives/date/component/style.css +9 -0
  35. package/components/primitives/index.d.ts +4 -0
  36. package/components/primitives/index.d.ts.map +1 -1
  37. package/components/primitives/index.js +4 -0
  38. package/components/primitives/internal/hint/style.css +4 -0
  39. package/components/primitives/number/components/withLabel/index.d.ts.map +1 -1
  40. package/components/primitives/number/components/withLabel/index.js +10 -2
  41. package/components/primitives/number/components/withoutLabel/index.d.ts.map +1 -1
  42. package/components/primitives/number/components/withoutLabel/index.js +12 -4
  43. package/components/primitives/number/types.d.ts +6 -0
  44. package/components/primitives/number/types.d.ts.map +1 -1
  45. package/components/primitives/password/component/style.css +10 -0
  46. package/components/primitives/radioGroup/component/index.d.ts +7 -0
  47. package/components/primitives/radioGroup/component/index.d.ts.map +1 -0
  48. package/components/primitives/radioGroup/component/index.js +42 -0
  49. package/components/primitives/radioGroup/component/style.css +382 -0
  50. package/components/primitives/radioGroup/component/style.scss +271 -0
  51. package/components/primitives/radioGroup/index.d.ts +3 -0
  52. package/components/primitives/radioGroup/index.d.ts.map +1 -0
  53. package/components/primitives/radioGroup/index.js +2 -0
  54. package/components/primitives/radioGroup/types.d.ts +61 -0
  55. package/components/primitives/radioGroup/types.d.ts.map +1 -0
  56. package/components/primitives/radioGroup/types.js +1 -0
  57. package/components/primitives/slider/component/index.d.ts +7 -0
  58. package/components/primitives/slider/component/index.d.ts.map +1 -0
  59. package/components/primitives/slider/component/index.js +47 -0
  60. package/components/primitives/slider/component/style.css +438 -0
  61. package/components/primitives/slider/component/style.scss +321 -0
  62. package/components/primitives/slider/index.d.ts +3 -0
  63. package/components/primitives/slider/index.d.ts.map +1 -0
  64. package/components/primitives/slider/index.js +2 -0
  65. package/components/primitives/slider/types.d.ts +51 -0
  66. package/components/primitives/slider/types.d.ts.map +1 -0
  67. package/components/primitives/slider/types.js +1 -0
  68. package/components/primitives/switch/component/index.d.ts +7 -0
  69. package/components/primitives/switch/component/index.d.ts.map +1 -0
  70. package/components/primitives/switch/component/index.js +39 -0
  71. package/components/primitives/switch/component/style.css +482 -0
  72. package/components/primitives/switch/component/style.scss +216 -0
  73. package/components/primitives/switch/index.d.ts +3 -0
  74. package/components/primitives/switch/index.d.ts.map +1 -0
  75. package/components/primitives/switch/index.js +2 -0
  76. package/components/primitives/switch/types.d.ts +23 -0
  77. package/components/primitives/switch/types.d.ts.map +1 -0
  78. package/components/primitives/switch/types.js +1 -0
  79. package/components/primitives/timePicker/component/index.d.ts +8 -0
  80. package/components/primitives/timePicker/component/index.d.ts.map +1 -0
  81. package/components/primitives/timePicker/component/index.js +65 -0
  82. package/components/primitives/timePicker/component/style.css +21 -0
  83. package/components/primitives/timePicker/component/style.scss +26 -0
  84. package/components/primitives/timePicker/index.d.ts +3 -0
  85. package/components/primitives/timePicker/index.d.ts.map +1 -0
  86. package/components/primitives/timePicker/index.js +2 -0
  87. package/components/primitives/timePicker/types.d.ts +33 -0
  88. package/components/primitives/timePicker/types.d.ts.map +1 -0
  89. package/components/primitives/timePicker/types.js +1 -0
  90. package/components/progress/component/style.css +167 -0
  91. package/components/search/component/index.d.ts.map +1 -1
  92. package/components/search/component/index.js +9 -3
  93. package/components/search/component/style.css +18 -0
  94. package/components/search/types.d.ts +5 -0
  95. package/components/search/types.d.ts.map +1 -1
  96. package/components/stepper/component/index.d.ts +7 -0
  97. package/components/stepper/component/index.d.ts.map +1 -0
  98. package/components/stepper/component/index.js +56 -0
  99. package/components/stepper/component/style.css +510 -0
  100. package/components/stepper/component/style.scss +432 -0
  101. package/components/stepper/index.d.ts +3 -0
  102. package/components/stepper/index.d.ts.map +1 -0
  103. package/components/stepper/index.js +2 -0
  104. package/components/stepper/types.d.ts +65 -0
  105. package/components/stepper/types.d.ts.map +1 -0
  106. package/components/stepper/types.js +1 -0
  107. package/components/table/component/style.css +14 -0
  108. package/components/tabs/component/style.css +6 -0
  109. package/components/tag/component/style.css +19 -0
  110. package/components/timeline/component/index.d.ts +7 -0
  111. package/components/timeline/component/index.d.ts.map +1 -0
  112. package/components/timeline/component/index.js +36 -0
  113. package/components/timeline/component/style.css +488 -0
  114. package/components/timeline/component/style.scss +397 -0
  115. package/components/timeline/index.d.ts +3 -0
  116. package/components/timeline/index.d.ts.map +1 -0
  117. package/components/timeline/index.js +2 -0
  118. package/components/timeline/types.d.ts +55 -0
  119. package/components/timeline/types.d.ts.map +1 -0
  120. package/components/timeline/types.js +1 -0
  121. package/components/tooltip/component/index.d.ts +6 -0
  122. package/components/tooltip/component/index.d.ts.map +1 -0
  123. package/components/tooltip/component/index.js +80 -0
  124. package/components/tooltip/index.d.ts +3 -0
  125. package/components/tooltip/index.d.ts.map +1 -0
  126. package/components/tooltip/index.js +2 -0
  127. package/components/tooltip/types.d.ts +31 -0
  128. package/components/tooltip/types.d.ts.map +1 -0
  129. package/components/tooltip/types.js +1 -0
  130. package/package.json +10 -3
  131. package/readme.md +18 -3
  132. package/tsconfig.tsbuildinfo +1 -1
@@ -0,0 +1,488 @@
1
+ @keyframes timeline-fade-in-left {
2
+ from {
3
+ opacity: 0;
4
+ transform: translateX(-20px);
5
+ }
6
+ to {
7
+ opacity: 1;
8
+ transform: translateX(0);
9
+ }
10
+ }
11
+ @keyframes timeline-fade-in-right {
12
+ from {
13
+ opacity: 0;
14
+ transform: translateX(20px);
15
+ }
16
+ to {
17
+ opacity: 1;
18
+ transform: translateX(0);
19
+ }
20
+ }
21
+ .bbr-timeline {
22
+ position: relative;
23
+ display: flex;
24
+ flex-direction: column;
25
+ width: 100%;
26
+ }
27
+ .bbr-timeline .bbr-timeline-item {
28
+ position: relative;
29
+ display: flex;
30
+ align-items: flex-start;
31
+ padding-bottom: 2rem;
32
+ }
33
+ .bbr-timeline .bbr-timeline-item:last-child {
34
+ padding-bottom: 0;
35
+ }
36
+ .bbr-timeline .bbr-timeline-item:last-child .bbr-timeline-connector {
37
+ display: none;
38
+ }
39
+ .bbr-timeline .bbr-timeline-marker {
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ width: 1.5rem;
44
+ height: 1.5rem;
45
+ min-width: 1.5rem;
46
+ border-radius: 50%;
47
+ background: hsl(171, 100%, 41%);
48
+ border: 2px solid hsl(171, 100%, 41%);
49
+ color: hsl(0, 0%, 100%);
50
+ font-size: 0.75rem;
51
+ font-weight: 600;
52
+ z-index: 1;
53
+ flex-shrink: 0;
54
+ }
55
+ .bbr-timeline .bbr-timeline-icon,
56
+ .bbr-timeline .bbr-timeline-marker-content {
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ font-size: 0.65rem;
61
+ }
62
+ .bbr-timeline .bbr-timeline-content {
63
+ flex: 1;
64
+ background: hsl(0, 0%, 100%);
65
+ border: 1px solid hsl(0, 0%, 86%);
66
+ border-radius: 4px;
67
+ padding: 1rem;
68
+ margin-left: 1rem;
69
+ box-shadow: 0 2px 4px rgba(10.2, 10.2, 10.2, 0.05);
70
+ }
71
+ .bbr-timeline .bbr-timeline-title {
72
+ font-weight: 600;
73
+ font-size: 1rem;
74
+ color: hsl(0, 0%, 21%);
75
+ line-height: 1.25;
76
+ }
77
+ .bbr-timeline .bbr-timeline-text {
78
+ margin-top: 0.5rem;
79
+ font-size: 0.875rem;
80
+ color: hsl(0, 0%, 48%);
81
+ line-height: 1.5;
82
+ }
83
+ .bbr-timeline .bbr-timeline-timestamp {
84
+ font-size: 0.75rem;
85
+ color: hsl(0, 0%, 71%);
86
+ margin-bottom: 0.25rem;
87
+ }
88
+ .bbr-timeline .bbr-timeline-connector {
89
+ position: absolute;
90
+ left: calc(0.75rem - 1px);
91
+ top: 1.5rem;
92
+ width: 2px;
93
+ height: calc(100% - 1.5rem);
94
+ background: hsl(0, 0%, 86%);
95
+ z-index: 0;
96
+ }
97
+ .bbr-timeline.is-left-aligned .bbr-timeline-item {
98
+ padding-left: 0;
99
+ }
100
+ .bbr-timeline.is-centered .bbr-timeline-item {
101
+ width: 50%;
102
+ margin-left: 50%;
103
+ }
104
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) {
105
+ margin-left: 0;
106
+ flex-direction: row-reverse;
107
+ text-align: right;
108
+ }
109
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-content {
110
+ margin-left: 0;
111
+ margin-right: 1rem;
112
+ }
113
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-connector {
114
+ left: auto;
115
+ right: calc(0.75rem - 1px);
116
+ }
117
+ .bbr-timeline.is-centered .bbr-timeline-marker {
118
+ position: absolute;
119
+ left: 50%;
120
+ transform: translateX(-50%);
121
+ }
122
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-marker {
123
+ left: auto;
124
+ right: 0;
125
+ transform: translateX(50%);
126
+ }
127
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(even) .bbr-timeline-marker {
128
+ left: 0;
129
+ transform: translateX(-50%);
130
+ }
131
+ .bbr-timeline.is-centered .bbr-timeline-connector {
132
+ left: 50%;
133
+ transform: translateX(-50%);
134
+ }
135
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-connector {
136
+ left: auto;
137
+ right: 0;
138
+ transform: translateX(50%);
139
+ }
140
+ .bbr-timeline.is-centered .bbr-timeline-item:nth-child(even) .bbr-timeline-connector {
141
+ left: 0;
142
+ transform: translateX(-50%);
143
+ }
144
+ .bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp {
145
+ position: absolute;
146
+ width: 100%;
147
+ margin-bottom: 0;
148
+ }
149
+ .bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp.is-left {
150
+ right: calc(50% + 0.75rem + 1rem);
151
+ left: auto;
152
+ text-align: right;
153
+ }
154
+ .bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp.is-right {
155
+ left: calc(50% + 0.75rem + 1rem);
156
+ right: auto;
157
+ text-align: left;
158
+ }
159
+ .bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-item:nth-child(odd) .bbr-timeline-timestamp.is-left {
160
+ display: none;
161
+ }
162
+ .bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-item:nth-child(even) .bbr-timeline-timestamp.is-right {
163
+ display: none;
164
+ }
165
+ .bbr-timeline.is-hollow .bbr-timeline-marker {
166
+ background: hsl(0, 0%, 100%);
167
+ }
168
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-white .bbr-timeline-marker {
169
+ background: hsl(0, 0%, 100%);
170
+ border-color: hsl(0, 0%, 100%);
171
+ color: hsl(0, 0%, 100%);
172
+ }
173
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-black .bbr-timeline-marker {
174
+ background: hsl(0, 0%, 100%);
175
+ border-color: hsl(0, 0%, 4%);
176
+ color: hsl(0, 0%, 4%);
177
+ }
178
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-light .bbr-timeline-marker {
179
+ background: hsl(0, 0%, 100%);
180
+ border-color: hsl(0, 0%, 96%);
181
+ color: hsl(0, 0%, 96%);
182
+ }
183
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-dark .bbr-timeline-marker {
184
+ background: hsl(0, 0%, 100%);
185
+ border-color: hsl(0, 0%, 21%);
186
+ color: hsl(0, 0%, 21%);
187
+ }
188
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-primary .bbr-timeline-marker {
189
+ background: hsl(0, 0%, 100%);
190
+ border-color: hsl(171, 100%, 41%);
191
+ color: hsl(171, 100%, 41%);
192
+ }
193
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-link .bbr-timeline-marker {
194
+ background: hsl(0, 0%, 100%);
195
+ border-color: hsl(229, 53%, 53%);
196
+ color: hsl(229, 53%, 53%);
197
+ }
198
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-info .bbr-timeline-marker {
199
+ background: hsl(0, 0%, 100%);
200
+ border-color: hsl(207, 61%, 53%);
201
+ color: hsl(207, 61%, 53%);
202
+ }
203
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-success .bbr-timeline-marker {
204
+ background: hsl(0, 0%, 100%);
205
+ border-color: hsl(153, 53%, 53%);
206
+ color: hsl(153, 53%, 53%);
207
+ }
208
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-warning .bbr-timeline-marker {
209
+ background: hsl(0, 0%, 100%);
210
+ border-color: hsl(44, 100%, 77%);
211
+ color: hsl(44, 100%, 77%);
212
+ }
213
+ .bbr-timeline.is-hollow .bbr-timeline-item.is-danger .bbr-timeline-marker {
214
+ background: hsl(0, 0%, 100%);
215
+ border-color: hsl(348, 86%, 61%);
216
+ color: hsl(348, 86%, 61%);
217
+ }
218
+ .bbr-timeline.is-animated .bbr-timeline-item {
219
+ opacity: 0;
220
+ }
221
+ .bbr-timeline.is-animated .bbr-timeline-item.is-animated-left {
222
+ animation: timeline-fade-in-left 0.5s ease forwards;
223
+ }
224
+ .bbr-timeline.is-animated .bbr-timeline-item.is-animated-right {
225
+ animation: timeline-fade-in-right 0.5s ease forwards;
226
+ }
227
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(1) {
228
+ animation-delay: 0s;
229
+ }
230
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(2) {
231
+ animation-delay: 0.15s;
232
+ }
233
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(3) {
234
+ animation-delay: 0.3s;
235
+ }
236
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(4) {
237
+ animation-delay: 0.45s;
238
+ }
239
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(5) {
240
+ animation-delay: 0.6s;
241
+ }
242
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(6) {
243
+ animation-delay: 0.75s;
244
+ }
245
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(7) {
246
+ animation-delay: 0.9s;
247
+ }
248
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(8) {
249
+ animation-delay: 1.05s;
250
+ }
251
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(9) {
252
+ animation-delay: 1.2s;
253
+ }
254
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(10) {
255
+ animation-delay: 1.35s;
256
+ }
257
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(11) {
258
+ animation-delay: 1.5s;
259
+ }
260
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(12) {
261
+ animation-delay: 1.65s;
262
+ }
263
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(13) {
264
+ animation-delay: 1.8s;
265
+ }
266
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(14) {
267
+ animation-delay: 1.95s;
268
+ }
269
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(15) {
270
+ animation-delay: 2.1s;
271
+ }
272
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(16) {
273
+ animation-delay: 2.25s;
274
+ }
275
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(17) {
276
+ animation-delay: 2.4s;
277
+ }
278
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(18) {
279
+ animation-delay: 2.55s;
280
+ }
281
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(19) {
282
+ animation-delay: 2.7s;
283
+ }
284
+ .bbr-timeline.is-animated .bbr-timeline-item:nth-child(20) {
285
+ animation-delay: 2.85s;
286
+ }
287
+ .bbr-timeline.is-small .bbr-timeline-marker {
288
+ width: 1.25rem;
289
+ height: 1.25rem;
290
+ min-width: 1.25rem;
291
+ font-size: 0.625rem;
292
+ }
293
+ .bbr-timeline.is-small .bbr-timeline-icon,
294
+ .bbr-timeline.is-small .bbr-timeline-marker-content {
295
+ font-size: 0.55rem;
296
+ }
297
+ .bbr-timeline.is-small .bbr-timeline-title {
298
+ font-size: 0.875rem;
299
+ }
300
+ .bbr-timeline.is-small .bbr-timeline-text {
301
+ font-size: 0.75rem;
302
+ }
303
+ .bbr-timeline.is-small .bbr-timeline-timestamp {
304
+ font-size: 0.625rem;
305
+ }
306
+ .bbr-timeline.is-small .bbr-timeline-content {
307
+ padding: 0.75rem;
308
+ }
309
+ .bbr-timeline.is-small .bbr-timeline-connector {
310
+ left: calc(0.625rem - 1px);
311
+ top: 1.25rem;
312
+ height: calc(100% - 1.25rem);
313
+ }
314
+ .bbr-timeline.is-medium .bbr-timeline-marker {
315
+ width: 1.75rem;
316
+ height: 1.75rem;
317
+ min-width: 1.75rem;
318
+ font-size: 0.875rem;
319
+ }
320
+ .bbr-timeline.is-medium .bbr-timeline-icon,
321
+ .bbr-timeline.is-medium .bbr-timeline-marker-content {
322
+ font-size: 0.75rem;
323
+ }
324
+ .bbr-timeline.is-medium .bbr-timeline-title {
325
+ font-size: 1.125rem;
326
+ }
327
+ .bbr-timeline.is-medium .bbr-timeline-text {
328
+ font-size: 1rem;
329
+ }
330
+ .bbr-timeline.is-medium .bbr-timeline-connector {
331
+ left: calc(0.875rem - 1px);
332
+ top: 1.75rem;
333
+ height: calc(100% - 1.75rem);
334
+ }
335
+ .bbr-timeline.is-large .bbr-timeline-marker {
336
+ width: 2rem;
337
+ height: 2rem;
338
+ min-width: 2rem;
339
+ font-size: 1rem;
340
+ }
341
+ .bbr-timeline.is-large .bbr-timeline-icon,
342
+ .bbr-timeline.is-large .bbr-timeline-marker-content {
343
+ font-size: 0.875rem;
344
+ }
345
+ .bbr-timeline.is-large .bbr-timeline-title {
346
+ font-size: 1.25rem;
347
+ }
348
+ .bbr-timeline.is-large .bbr-timeline-text {
349
+ font-size: 1.125rem;
350
+ }
351
+ .bbr-timeline.is-large .bbr-timeline-content {
352
+ padding: 1.25rem;
353
+ }
354
+ .bbr-timeline.is-large .bbr-timeline-connector {
355
+ left: calc(1rem - 1px);
356
+ top: 2rem;
357
+ height: calc(100% - 2rem);
358
+ }
359
+ .bbr-timeline.is-white .bbr-timeline-marker {
360
+ background: hsl(0, 0%, 100%);
361
+ border-color: hsl(0, 0%, 100%);
362
+ color: hsl(0, 0%, 4%);
363
+ }
364
+ .bbr-timeline.is-white .bbr-timeline-connector {
365
+ background: rgba(255, 255, 255, 0.3);
366
+ }
367
+ .bbr-timeline .bbr-timeline-item.is-white .bbr-timeline-marker {
368
+ background: hsl(0, 0%, 100%);
369
+ border-color: hsl(0, 0%, 100%);
370
+ color: hsl(0, 0%, 4%);
371
+ }
372
+ .bbr-timeline.is-black .bbr-timeline-marker {
373
+ background: hsl(0, 0%, 4%);
374
+ border-color: hsl(0, 0%, 4%);
375
+ color: hsl(0, 0%, 100%);
376
+ }
377
+ .bbr-timeline.is-black .bbr-timeline-connector {
378
+ background: rgba(10.2, 10.2, 10.2, 0.3);
379
+ }
380
+ .bbr-timeline .bbr-timeline-item.is-black .bbr-timeline-marker {
381
+ background: hsl(0, 0%, 4%);
382
+ border-color: hsl(0, 0%, 4%);
383
+ color: hsl(0, 0%, 100%);
384
+ }
385
+ .bbr-timeline.is-light .bbr-timeline-marker {
386
+ background: hsl(0, 0%, 96%);
387
+ border-color: hsl(0, 0%, 96%);
388
+ color: rgba(0, 0, 0, 0.7);
389
+ }
390
+ .bbr-timeline.is-light .bbr-timeline-connector {
391
+ background: rgba(244.8, 244.8, 244.8, 0.3);
392
+ }
393
+ .bbr-timeline .bbr-timeline-item.is-light .bbr-timeline-marker {
394
+ background: hsl(0, 0%, 96%);
395
+ border-color: hsl(0, 0%, 96%);
396
+ color: rgba(0, 0, 0, 0.7);
397
+ }
398
+ .bbr-timeline.is-dark .bbr-timeline-marker {
399
+ background: hsl(0, 0%, 21%);
400
+ border-color: hsl(0, 0%, 21%);
401
+ color: #fff;
402
+ }
403
+ .bbr-timeline.is-dark .bbr-timeline-connector {
404
+ background: rgba(53.55, 53.55, 53.55, 0.3);
405
+ }
406
+ .bbr-timeline .bbr-timeline-item.is-dark .bbr-timeline-marker {
407
+ background: hsl(0, 0%, 21%);
408
+ border-color: hsl(0, 0%, 21%);
409
+ color: #fff;
410
+ }
411
+ .bbr-timeline.is-primary .bbr-timeline-marker {
412
+ background: hsl(171, 100%, 41%);
413
+ border-color: hsl(171, 100%, 41%);
414
+ color: #fff;
415
+ }
416
+ .bbr-timeline.is-primary .bbr-timeline-connector {
417
+ background: rgba(0, 209.1, 177.735, 0.3);
418
+ }
419
+ .bbr-timeline .bbr-timeline-item.is-primary .bbr-timeline-marker {
420
+ background: hsl(171, 100%, 41%);
421
+ border-color: hsl(171, 100%, 41%);
422
+ color: #fff;
423
+ }
424
+ .bbr-timeline.is-link .bbr-timeline-marker {
425
+ background: hsl(229, 53%, 53%);
426
+ border-color: hsl(229, 53%, 53%);
427
+ color: #fff;
428
+ }
429
+ .bbr-timeline.is-link .bbr-timeline-connector {
430
+ background: rgba(71.6295, 94.92035, 198.6705, 0.3);
431
+ }
432
+ .bbr-timeline .bbr-timeline-item.is-link .bbr-timeline-marker {
433
+ background: hsl(229, 53%, 53%);
434
+ border-color: hsl(229, 53%, 53%);
435
+ color: #fff;
436
+ }
437
+ .bbr-timeline.is-info .bbr-timeline-marker {
438
+ background: hsl(207, 61%, 53%);
439
+ border-color: hsl(207, 61%, 53%);
440
+ color: #fff;
441
+ }
442
+ .bbr-timeline.is-info .bbr-timeline-connector {
443
+ background: rgba(62.0415, 142.46085, 208.2585, 0.3);
444
+ }
445
+ .bbr-timeline .bbr-timeline-item.is-info .bbr-timeline-marker {
446
+ background: hsl(207, 61%, 53%);
447
+ border-color: hsl(207, 61%, 53%);
448
+ color: #fff;
449
+ }
450
+ .bbr-timeline.is-success .bbr-timeline-marker {
451
+ background: hsl(153, 53%, 53%);
452
+ border-color: hsl(153, 53%, 53%);
453
+ color: #fff;
454
+ }
455
+ .bbr-timeline.is-success .bbr-timeline-connector {
456
+ background: rgba(71.6295, 198.6705, 141.50205, 0.3);
457
+ }
458
+ .bbr-timeline .bbr-timeline-item.is-success .bbr-timeline-marker {
459
+ background: hsl(153, 53%, 53%);
460
+ border-color: hsl(153, 53%, 53%);
461
+ color: #fff;
462
+ }
463
+ .bbr-timeline.is-warning .bbr-timeline-marker {
464
+ background: hsl(44, 100%, 77%);
465
+ border-color: hsl(44, 100%, 77%);
466
+ color: rgba(0, 0, 0, 0.7);
467
+ }
468
+ .bbr-timeline.is-warning .bbr-timeline-connector {
469
+ background: rgba(255, 223.72, 137.7, 0.3);
470
+ }
471
+ .bbr-timeline .bbr-timeline-item.is-warning .bbr-timeline-marker {
472
+ background: hsl(44, 100%, 77%);
473
+ border-color: hsl(44, 100%, 77%);
474
+ color: rgba(0, 0, 0, 0.7);
475
+ }
476
+ .bbr-timeline.is-danger .bbr-timeline-marker {
477
+ background: hsl(348, 86%, 61%);
478
+ border-color: hsl(348, 86%, 61%);
479
+ color: #fff;
480
+ }
481
+ .bbr-timeline.is-danger .bbr-timeline-connector {
482
+ background: rgba(241.077, 70.023, 104.2338, 0.3);
483
+ }
484
+ .bbr-timeline .bbr-timeline-item.is-danger .bbr-timeline-marker {
485
+ background: hsl(348, 86%, 61%);
486
+ border-color: hsl(348, 86%, 61%);
487
+ color: #fff;
488
+ }