2018-12-12 20:26:00 -02:00
|
|
|
.nes-list {
|
2018-12-12 21:23:53 -02:00
|
|
|
$disc: (
|
2018-12-12 20:26:00 -02:00
|
|
|
(0, 0, 0, 1, 1, 0, 0, 0),
|
|
|
|
(0, 0, 1, 1, 1, 1, 0, 0),
|
|
|
|
(0, 1, 1, 1, 1, 1, 1, 0),
|
|
|
|
(0, 1, 1, 1, 1, 1, 1, 0),
|
|
|
|
(0, 0, 1, 1, 1, 1, 0, 0),
|
|
|
|
(0, 0, 0, 1, 1, 0, 0, 0)
|
|
|
|
);
|
|
|
|
|
2018-12-12 21:23:53 -02:00
|
|
|
$circle: (
|
2018-12-12 20:26:00 -02:00
|
|
|
(0, 0, 0, 1, 1, 0, 0, 0),
|
2018-12-12 21:23:53 -02:00
|
|
|
(0, 0, 1, 1, 1, 1, 0, 0),
|
|
|
|
(0, 1, 1, 0, 0, 1, 1, 0),
|
|
|
|
(0, 1, 1, 0, 0, 1, 1, 0),
|
|
|
|
(0, 0, 1, 1, 1, 1, 0, 0),
|
2018-12-12 20:26:00 -02:00
|
|
|
(0, 0, 0, 1, 1, 0, 0, 0)
|
|
|
|
);
|
|
|
|
$colors: ($base-color, map-get($default-colors, "shadow"));
|
|
|
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
& li {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-12-12 21:23:53 -02:00
|
|
|
&.is-disc li::before {
|
2018-12-12 20:26:00 -02:00
|
|
|
position: absolute;
|
2018-12-13 12:09:39 -02:00
|
|
|
top: calc(50% - 8px);
|
|
|
|
left: -22px;
|
2018-12-12 20:26:00 -02:00
|
|
|
content: "";
|
|
|
|
|
2018-12-12 21:23:53 -02:00
|
|
|
@include pixelize($disc, $colors, 2px);
|
2018-12-12 20:26:00 -02:00
|
|
|
}
|
|
|
|
|
2018-12-12 21:23:53 -02:00
|
|
|
&.is-circle li::before {
|
2018-12-12 20:26:00 -02:00
|
|
|
position: absolute;
|
2018-12-13 12:09:39 -02:00
|
|
|
top: calc(50% - 8px);
|
|
|
|
left: -22px;
|
2018-12-12 20:26:00 -02:00
|
|
|
content: "";
|
|
|
|
|
2018-12-12 21:23:53 -02:00
|
|
|
@include pixelize($circle, $colors, 2px);
|
2018-12-12 20:26:00 -02:00
|
|
|
}
|
|
|
|
}
|