scratch-www/src/components/stepnavigation/stepnavigation.scss

32 lines
573 B
SCSS
Raw Normal View History

2016-06-16 10:54:36 -04:00
@import "../../colors";
@import "../../frameless";
.step-navigation {
margin: 0;
padding: 0;
list-style: none;
li {
display: inline-block;
border-radius: 50%;
padding: .25rem;
2016-06-16 10:54:36 -04:00
.indicator {
border-radius: .25rem;
2016-06-16 10:54:36 -04:00
background-color: $ui-white;
width: .5rem;
height: .5rem;
2016-06-16 10:54:36 -04:00
}
&.active {
.indicator {
background-color: $ui-aqua;
}
}
&.selected {
border: 1px solid $ui-white;
}
}
}