Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19x 19x 19x | .categorization-stepper {
counter-reset: categorization-step-number;
}
.categorization-stepper div[role='tab'] {
counter-increment: categorization-step-number;
}
.categorization-stepper div[role='tab'] > span:before {
--categorization-stepper-number-size: 1.2rem;
display: inline-block;
width: var(--categorization-stepper-number-size);
height: var(--categorization-stepper-number-size);
border-radius: 50%;
margin-right: 0.4rem;
overflow: hidden;
content: counter(categorization-step-number);
text-align: center;
vertical-align: middle;
line-height: var(--categorization-stepper-number-size);
font-size: 0.75em;
font-weight: 500;
background-color: var(--spectrum-global-color-gray-500);
color: var(--spectrum-global-color-gray-200);
}
.categorization-stepper div[role='tab'][aria-selected='true'] > span:before {
background-color: var(--spectrum-global-color-gray-900);
color: var(--spectrum-global-color-gray-100);
}
|