.layout {
border: 1px solid {{design.borderColor.toColor()}};
}
.background {
background-color: {{design.bgColor.toColor()}};
opacity: {{design.bgAlpha}};
}
.gradient .background {
background-image: -moz-linear-gradient(top, white, {{design.bgColor.toColor()}});
background-image: -ms-linear-gradient(top, white, {{design.bgColor.toColor()}});
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from({{design.bgColor.toColor()}}), to(white));
background-image: -webkit-linear-gradient(top, white, {{design.bgColor.toColor()}});
background-image: linear-gradient(to bottom, white, {{design.bgColor.toColor()}});
}
.image .background {
background-color: #fff;
background-image: url({{design.bgImageUrl}});
}
.product-container {
margin: 0 0 7px {{flex(7, products.length, 3)}}px;
}
.product-container .button {
background-color: {{design.btnColor.toColor()}};
color: {{design.txtColorCta.toColor()}};
}
.product-container .button.text {
color: {{design.btnColor.toColor()}};
}
.product-container .button:hover {
background-color: {{design.btnRollColor.toColor()}};
}
.product-container .button.text:hover {
color: {{design.btnRollColor.toColor()}};
}
.product-container:hover img {
-moz-box-shadow: 0 0 4px {{design.glowColor.toColor()}};
-webkit-box-shadow: 0 0 4px {{design.glowColor.toColor()}};
box-shadow: 0 0 4px {{design.glowColor.toColor()}};
}
.product-image-container {
-webkit-border-radius: {{design.cornerStyle != "round" && 0}};
border-radius: {{design.cornerStyle != "round" && 0}};
}
.cta-text-shadow {
text-shadow: 1px 1px 1px {{design.btnColor.toColor()}};
}
.cta-text-shadow:hover {
text-shadow: 1px 1px 1px {{design.btnRollColor.toColor()}};
}
.headline {
color: {{design.txtColorTitle.toColor()}};
font-size: {{design.headlineSize}}px;
}
.product-price {
color: {{design.txtColorPrice.toColor()}};
font-size: {{design.priceSize}}px;
}
.product-name {
color: {{design.txtColorProduct.toColor()}};
font-size: {{design.nameSize}}px;
}
.disclaimer {
color: {{design.txtColorDisc.toColor()}};
}