51 lines
818 B
CSS
51 lines
818 B
CSS
/* AlaskarDev Changes */
|
|
|
|
/** Title **/
|
|
.elementor h1 {
|
|
font-size: 13px !important;
|
|
max-height: 20px !important;
|
|
text-decoration: none !important;
|
|
|
|
line-height: 1em;
|
|
}
|
|
|
|
/** Price **/
|
|
.elementor .woocommerce-Price-amount {
|
|
font-size: 12px !important;
|
|
line-height: 2.5em !important;
|
|
color: gray !important;
|
|
}
|
|
|
|
/** Single Product Title **/
|
|
.product_title {
|
|
font-size: 16px !important;
|
|
line-height: 2.5em;
|
|
}
|
|
|
|
/** Paragraph **/
|
|
p {
|
|
text-align: left !important;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
/** Price line **/
|
|
p.price del {
|
|
font-size: 12px !important;
|
|
color: red !important;
|
|
}
|
|
|
|
/** Mobile **/
|
|
@media (max-width: 767px) {
|
|
.product_title {
|
|
text-align: left !important;
|
|
margin: 0px 0px 0px 10px
|
|
}
|
|
|
|
p.price {
|
|
text-align: left;
|
|
padding: 0px 0px 0px 42px;
|
|
display: flex-start;
|
|
}
|
|
}
|
|
|
|
/* End of AlaskarDev */
|