Night and Day
@for $i from 1 through 20 {
.star#{$i} {
position: absolute;
width:0;
height:0;
border-left:10px solid transparent;
border-right:10px solid transparent;
border-bottom:16px solid #ff9d00;
&:after{
content:"";
position: absolute;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 16px solid #ff9d00;
margin: 6px 0 0 -10px;
}
}
}
@for $j from 1 through 5 {
.star#{$j} {
top:$j *(2.1% * $j);
left:$j *(3.2% * $j);
}
}
*/