| 1 |
:root { |
| 2 |
--e-global-color-primary: #FFD012; |
| 3 |
--e-global-color-secondary: #0B3665; |
| 4 |
} |
| 5 |
|
| 6 |
.eel-cntdwn { |
| 7 |
display: flex; |
| 8 |
align-items: center; |
| 9 |
flex-wrap: wrap; |
| 10 |
gap: 25px; |
| 11 |
justify-content: center; |
| 12 |
} |
| 13 |
.eel-cntdwn-days-label, |
| 14 |
.eel-cntdwn-hours-label, |
| 15 |
.eel-cntdwn-minutes-label, |
| 16 |
.eel-cntdwn-seconds-label { |
| 17 |
color: var(--e-global-color-secondary); |
| 18 |
justify-content: center; |
| 19 |
font-size: 14px; |
| 20 |
line-height: 1.4; |
| 21 |
font-weight: 300; |
| 22 |
} |
| 23 |
.eel-cntdwn-days, |
| 24 |
.eel-cntdwn-hours, |
| 25 |
.eel-cntdwn-minutes, |
| 26 |
.eel-cntdwn-seconds { |
| 27 |
text-align: center; |
| 28 |
display: inline-block; |
| 29 |
font-size: 44px; |
| 30 |
font-weight: 400; |
| 31 |
line-height: 1; |
| 32 |
color: var(--e-global-color-primary); |
| 33 |
} |
| 34 |
|
| 35 |
.eel-cntdwn-item { |
| 36 |
position: relative; |
| 37 |
} |
| 38 |
|
| 39 |
/* divider bullets style */ |
| 40 |
.eel-cntdwn-bullets::before, |
| 41 |
.eel-cntdwn-bullets::after { |
| 42 |
content: ''; |
| 43 |
display: block; |
| 44 |
width: 6px; |
| 45 |
height: 6px; |
| 46 |
background: var(--e-global-color-secondary); |
| 47 |
position: absolute; |
| 48 |
left: 112%; |
| 49 |
bottom: 30%; |
| 50 |
} |
| 51 |
.eel-cntdwn-bullets::after { |
| 52 |
bottom: inherit; |
| 53 |
top: 35%; |
| 54 |
} |
| 55 |
|
| 56 |
.eel-cntdwn-bullets:last-child::after, |
| 57 |
.eel-cntdwn-bullets:last-child::before { |
| 58 |
display: none; |
| 59 |
} |
| 60 |
|
| 61 |
/* divider Dash style */ |
| 62 |
.eel-cntdwn-dash::before { |
| 63 |
content: ''; |
| 64 |
display: block; |
| 65 |
width: 10px; |
| 66 |
height: 5px; |
| 67 |
background: var(--e-global-color-secondary); |
| 68 |
position: absolute; |
| 69 |
left: 110%; |
| 70 |
top: 50%; |
| 71 |
transform: translateY(-50%); |
| 72 |
} |
| 73 |
.eel-cntdwn-dash:last-child::before { |
| 74 |
display: none; |
| 75 |
} |
| 76 |
|
| 77 |
// Responsive |
| 78 |
@media screen and (max-width: 767px) { |
| 79 |
.eel-cntdwn-days-label, |
| 80 |
.eel-cntdwn-hours-label, |
| 81 |
.eel-cntdwn-minutes-label, |
| 82 |
.eel-cntdwn-seconds-label { |
| 83 |
font-size: 12px; |
| 84 |
} |
| 85 |
.eel-cntdwn-days, |
| 86 |
.eel-cntdwn-hours, |
| 87 |
.eel-cntdwn-minutes, |
| 88 |
.eel-cntdwn-seconds { |
| 89 |
font-size: 22px; |
| 90 |
} |
| 91 |
} |