Files
2026-04-28 15:13:50 +02:00

92 lines
1.7 KiB
CSS

/***********************/
/* Eastern Promotion */
/***********************/
.wppfm-discount-promotion-container {
display: grid;
grid-template-columns: auto auto;
margin: auto;
padding: 5px;
width: 1000px;
}
.wppfm-discount-promotion-image {
grid-row: 1 / 3;
text-align: center;
}
.wppfm-discount-promotion-offer {
grid-row: 2 / 3;
margin-left: 20px;
}
.wppfm-discount-promotion-dismiss-action {
grid-row: 3 / 3;
}
.wppfm-discount-promotion-message h1 {
font-weight: bold;
}
.wppfm-discount-promotion-message p {
font-size: 1.2em;
font-weight: 500;
margin: 0;
padding: 1px;
}
.wppfm-discount-promotion-message em {
font-weight: 750;
}
.wppfm-discount-button {
border: none;
border-radius: 16px;
box-shadow: none;
color: white;
display: inline-block;
font-weight: 700;
font-size: 1.13em;
margin: 10px 30px 10px 0;
padding: 7px;
text-align: center;
text-decoration: none;
width: 240px;
}
.wppfm-discount-button:focus,
.wppfm-discount-button:hover {
border: none;
box-shadow: none;
color: white;
outline: none;
transition: all 0.2s ease-in-out;
transition-property: background;
}
.wppfm-go-for-the-deal {
background-color: green;
}
.wppfm-discount-promotion-call-to-action {
margin-top: 15px;
}
.wppfm-go-for-the-deal:focus,
.wppfm-go-for-the-deal:hover {
background-color: darkgreen;
}
.wppfm-dismiss-promotion-notice {
background-color: red;
}
.wppfm-dismiss-promotion-notice:focus,
.wppfm-dismiss-promotion-notice:hover {
background-color: darkred;
}
.wppfm-dismiss-discount-link {
color: #787c82;
font-size: 13px;
}