15 lines
309 B
CSS
15 lines
309 B
CSS
:root {
|
|
--list-disc-color: var(--grey-color);
|
|
--list-disc-scale: 2;
|
|
}
|
|
|
|
.uk-list-xlarge>*>ul, .uk-list-xlarge>:nth-child(n+2) {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.uk-list.uk-list-disc > li::before {
|
|
color: var(--list-disc-color);
|
|
transform: scale(var(--list-disc-scale));
|
|
-moz-transform-origin: right center;
|
|
}
|