Modifying the size of rating buttons

The first section of CSS files contains the default size, color, and shape of the rating scale buttons. To modify the size of the button, change the height and width properties. In the following example, the height and width of the buttons is set to 30 pixels:

.neb-rating-implementation neb-rating .neb-rating.numbers
label.rating-label,
 .neb-rating-html-implementation neb-rating .neb-rating .neb-rating.numbersCircle
label.rating-label,
  .neb-rating-html-implementation neb.rating .neb-rating.numbersSquare
.neb-rating-value label.rating-label{
height: 30px !important;
width: 30px !important;
}