mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 09:11:19 -05:00
32 lines
593 B
SCSS
32 lines
593 B
SCSS
|
@import "../../colors";
|
||
|
@import "../../frameless";
|
||
|
|
||
|
.step-navigation {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
|
||
|
li {
|
||
|
display: inline-block;
|
||
|
border-radius: 8px / $em;
|
||
|
padding: 4px / $em;
|
||
|
|
||
|
.indicator {
|
||
|
border-radius: 4px / $em;
|
||
|
background-color: $ui-white;
|
||
|
width: 8px / $em;
|
||
|
height: 8px / $em;
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
.indicator {
|
||
|
background-color: $ui-aqua;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.selected {
|
||
|
border: 1px solid $ui-white;
|
||
|
}
|
||
|
}
|
||
|
}
|