23 lines
248 B
SCSS
23 lines
248 B
SCSS
|
|
|
|
span.star-rating {
|
|
|
|
display: block;
|
|
font-size: 30px;
|
|
color: gold;
|
|
cursor: default;
|
|
|
|
span.star {
|
|
|
|
@extend .glyphicon;
|
|
|
|
&.empty {
|
|
@extend .glyphicon-star-empty;
|
|
}
|
|
|
|
&.full {
|
|
@extend .glyphicon-star;
|
|
}
|
|
}
|
|
|
|
} |