2022-11-23 19:14:59 +00:00
|
|
|
.rating {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ratingValue {
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ratingControl {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
height: 0.9em;
|
|
|
|
line-height: 0;
|
|
|
|
@include font-size(3.6rem);
|
2022-11-27 06:33:05 +00:00
|
|
|
color: #777;
|
2022-11-23 19:14:59 +00:00
|
|
|
padding: 0;
|
|
|
|
width: 0.9em;
|
2022-11-27 06:33:05 +00:00
|
|
|
transition: 0.15s all linear;
|
2022-11-23 19:14:59 +00:00
|
|
|
&:hover {
|
2022-11-27 06:33:05 +00:00
|
|
|
transform: scale(1.2);
|
2022-11-23 19:14:59 +00:00
|
|
|
}
|
|
|
|
}
|