Untitled

 avatar
unknown
plain_text
2 months ago
1.1 kB
18
Indexable
Design 1

// changes the colors of the page and fonts //
body#cart {
background: #7cccbd;
}
body#cart {
color: #ffffff;
}
.cart-title {
color: #ffffff;
}

// hides the “shopping cart” text and adds new text //
.cart-title {
display: hidden !important;
font-size: 0px !important;
}
.cart-title:after {
display: visible;
text-transform: capitalize !important;
content: "NEW TEXT HERE";
font-size: 28px;}

// hides the “checkout” button text and adds new text //
.cart-checkout-button {
display: hidden !important;
font-size: 0px !important;
}
.cart-checkout-button:after {
display: visible;
content: "NEW TEXT HERE";
font-size: 18px;}

Design 2

/* Shopping Cart Title */
.cart-title {
color: #50bdb8;
font-family: serif;
text-transform:uppercase;
text-align: center
}

/* Cart Content */
.cart-container{
background: #e5f5f6;
border-radius: 15px;
padding: 1rem;
border:1 px solid #333;
width: 80vw;
margin:auto
}

/* Product Row */
.cart-row {
border:none!important
}

/* Product Image */
.cart-row-img{
border-radius: 15px
}

/* Product Title */
.cart-row-title {
color: #50bdb8!important;
font-family: serif!important;
}
Editor is loading...
Leave a Comment