woocommerce cart css description

Solutions on MaxInterview for woocommerce cart css description by the best coders in the world

showing results for - "woocommerce cart css description"
Elisa
12 Feb 2017
1/* The "Apply Coupon" button */
2.button[name="apply_coupon"] {
3  background-color: transparent;
4  color: #13aff0;
5}
6/* Fill the "Apply Coupon" button background color and underline it on hover */
7.button[name="apply_coupon"]:hover {
8  background-color: transparent;
9  text-decoration: underline;
10}
1112/* The "Update Cart" button */
13.button[name="update_cart"] {
14  background-color: #e2e2e2;
15  color: #13aff0;
16}
17/* Brighten up the button on hover */
18.button[name="update_cart"]:hover {
19  filter: brightness(115%);
20}
Giulio
18 Apr 2016
1.woocommerce-cart .woocommerce {
2  display: flex;
3}