mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2024-12-26 21:41:31 +08:00
26 lines
481 B
Plaintext
26 lines
481 B
Plaintext
.rating {
|
|
unicode-bidi: bidi-override;
|
|
direction: rtl;
|
|
|
|
font-size: 30px;
|
|
span.star {
|
|
font-family: FontAwesome;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
display: inline-block;
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
span.star:before {
|
|
content: "\f006"; // empty star
|
|
padding-right: 5px;
|
|
color: @gray-light;
|
|
}
|
|
|
|
span.star:hover:before, span.star:hover ~ span.star:before {
|
|
content: "\f005"; // solid star
|
|
color: #e3cf7a;
|
|
}
|
|
}
|