Skip to content

Instantly share code, notes, and snippets.

@artlipsky
Created April 5, 2019 14:06
Show Gist options
  • Save artlipsky/3e1df7d6b66775cb23a29700736e90ce to your computer and use it in GitHub Desktop.
Save artlipsky/3e1df7d6b66775cb23a29700736e90ce to your computer and use it in GitHub Desktop.
/*--------------------Default Styles----------------------*/
.woocommerce div.product .woocommerce-product-rating {
display: flex;
align-items: center;
}
.woocommerce .star-rating::before {
position: relative;
color: #dddddd;
}
.woocommerce .woocommerce-product-rating .star-rating {
width: auto;
letter-spacing: 2px;
margin: 0 4px 0 0;
}
a.woocommerce-review-link {
font-size: 12px;
color: #00ADEF;
transition: all ease 0.2s;
}
a.woocommerce-review-link:hover {
color: #E96199;
}
.woocommerce .star-rating span{
color: #E96199;
}
/*--------------------Custom Styles----------------------*/
/* Text Link */
a.woocommerce-review-link {
font-size: default;
font-family: default;
color: default;
font-family: default;
letter-spacing: default;
line-height: default;
}
a.woocommerce-review-link:hover {
color: default;
}
/* Stars Size */
.woocommerce .woocommerce-product-rating .star-rating {
font-size: default;
}
/* Filled Stars Color */
.woocommerce .star-rating span{
color: default;
}
/* Empty Stars Color */
.woocommerce .star-rating::before {
color: default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment