style.css
85 lines
| 1 | .sc-countdown-timer { |
| 2 | display: flex; |
| 3 | justify-content: center; |
| 4 | } |
| 5 | .sc-countdown-timer.aligncenter { |
| 6 | text-align: center; |
| 7 | } |
| 8 | .sc-countdown-timer.alignright { |
| 9 | /*rtl:ignore*/ |
| 10 | text-align: right; |
| 11 | } |
| 12 | :where(.sc-countdown-timer) { |
| 13 | box-shadow: none; |
| 14 | text-decoration: none; |
| 15 | border-radius: 9999px; |
| 16 | padding: calc(0.667em + 2px) calc(1.333em + 2px); |
| 17 | } |
| 18 | .sc-countdown-timer.has-custom-width { |
| 19 | max-width: none; |
| 20 | width: 100%; |
| 21 | } |
| 22 | .sc-countdown-timer__width-100 .sc-upsell-countdown-timer { |
| 23 | width: 100%; |
| 24 | flex-basis: 100%; |
| 25 | } |
| 26 | .sc-countdown-timer__width-25 .sc-upsell-countdown-timer{ |
| 27 | width: 25% !important; |
| 28 | } |
| 29 | .sc-countdown-timer__width-50 .sc-upsell-countdown-timer{ |
| 30 | width: 50% !important; |
| 31 | } |
| 32 | .sc-countdown-timer__width-75 .sc-upsell-countdown-timer{ |
| 33 | width: 75% !important; |
| 34 | } |
| 35 | .sc-countdown-timer.is-style-squared { |
| 36 | border-radius: 0; |
| 37 | } |
| 38 | .sc-countdown-timer.no-border-radius { |
| 39 | border-radius: 0 !important; |
| 40 | } |
| 41 | .sc-countdown-timer.is-style-outline > .sc-countdown-timer, |
| 42 | .sc-countdown-timer.is-style-outline { |
| 43 | border: 2px solid currentColor; |
| 44 | padding: 0.667em 1.333em; |
| 45 | } |
| 46 | .sc-countdown-timer.is-style-outline > .sc-countdown-timer:not(.has-text-color), |
| 47 | .sc-countdown-timer.is-style-outline:not(.has-text-color) { |
| 48 | color: currentColor; |
| 49 | } |
| 50 | .sc-countdown-timer.is-style-outline > .sc-countdown-timer:not(.has-background), |
| 51 | .sc-countdown-timer.is-style-outline:not(.has-background) { |
| 52 | background-color: transparent; |
| 53 | background-image: none; |
| 54 | } |
| 55 | .sc-countdown-timer:where(.has-border-color) { |
| 56 | border-width: initial; |
| 57 | } |
| 58 | .sc-countdown-timer:where([style*='border-top-color']) { |
| 59 | border-top-width: initial; |
| 60 | } |
| 61 | .sc-countdown-timer:where([style*='border-right-color']) { |
| 62 | border-right-width: initial; |
| 63 | } |
| 64 | .sc-countdown-timer:where([style*='border-bottom-color']) { |
| 65 | border-bottom-width: initial; |
| 66 | } |
| 67 | .sc-countdown-timer:where([style*='border-left-color']) { |
| 68 | border-left-width: initial; |
| 69 | } |
| 70 | .sc-countdown-timer:where([style*='border-style']) { |
| 71 | border-width: initial; |
| 72 | } |
| 73 | .sc-countdown-timer:where([style*='border-top-style']) { |
| 74 | border-top-width: initial; |
| 75 | } |
| 76 | .sc-countdown-timer:where([style*='border-right-style']) { |
| 77 | border-right-width: initial; |
| 78 | } |
| 79 | .sc-countdown-timer:where([style*='border-bottom-style']) { |
| 80 | border-bottom-width: initial; |
| 81 | } |
| 82 | .sc-countdown-timer:where([style*='border-left-style']) { |
| 83 | border-left-width: initial; |
| 84 | } |
| 85 |