| 1 |
[class~=hurrytimer-campaign] { |
| 2 |
line-height: normal; |
| 3 |
text-align: center; |
| 4 |
padding: 10px 0; |
| 5 |
} |
| 6 |
[class~=hurrytimer-campaign] * { |
| 7 |
line-height: normal; |
| 8 |
} |
| 9 |
|
| 10 |
.hurryt-loading { |
| 11 |
display: none !important; |
| 12 |
} |
| 13 |
|
| 14 |
.hurrytimer-timer { |
| 15 |
display: flex; |
| 16 |
align-items: baseline; |
| 17 |
justify-content: center; |
| 18 |
flex-wrap: wrap; |
| 19 |
} |
| 20 |
|
| 21 |
.hurrytimer-timer-digit { |
| 22 |
font-feature-settings: "tnum"; |
| 23 |
font-variant-numeric: tabular-nums; |
| 24 |
} |
| 25 |
|
| 26 |
.hurrytimer-headline { |
| 27 |
color: #333; |
| 28 |
display: block; |
| 29 |
margin: 5px auto; |
| 30 |
overflow: hidden; |
| 31 |
} |
| 32 |
|
| 33 |
.hurrytimer-timer-block { |
| 34 |
position: relative; |
| 35 |
display: flex; |
| 36 |
margin-right: 5px; |
| 37 |
flex-direction: column; |
| 38 |
align-items: center; |
| 39 |
justify-content: center; |
| 40 |
box-sizing: content-box; |
| 41 |
margin-bottom: 10px; |
| 42 |
margin-left: 5px; |
| 43 |
} |
| 44 |
.hurrytimer-timer-block:last-child { |
| 45 |
margin-right: 0; |
| 46 |
} |
| 47 |
.hurrytimer-timer-block:first-child { |
| 48 |
margin-left: 0; |
| 49 |
} |
| 50 |
|
| 51 |
.hurrytimer-sticky { |
| 52 |
margin: auto !important; |
| 53 |
width: 100%; |
| 54 |
background: #fff; |
| 55 |
left: 0; |
| 56 |
right: 0; |
| 57 |
z-index: 9999; |
| 58 |
position: fixed; |
| 59 |
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); |
| 60 |
} |
| 61 |
.hurrytimer-sticky.is-off { |
| 62 |
position: relative; |
| 63 |
z-index: 0; |
| 64 |
} |
| 65 |
|
| 66 |
.admin-bar:not(.wp-admin) .hurrytimer-sticky { |
| 67 |
z-index: 999999; |
| 68 |
} |
| 69 |
|
| 70 |
.hurrytimer-sticky-inner { |
| 71 |
max-width: 1200px; |
| 72 |
margin: auto; |
| 73 |
text-align: center; |
| 74 |
padding-left: 5px; |
| 75 |
padding-right: 5px; |
| 76 |
} |
| 77 |
|
| 78 |
.hurrytimer-button { |
| 79 |
display: inline-block; |
| 80 |
text-decoration: none; |
| 81 |
outline: none; |
| 82 |
} |
| 83 |
|
| 84 |
.hurrytimer-sticky-close { |
| 85 |
right: 10px; |
| 86 |
position: absolute; |
| 87 |
transform: translateY(-50%); |
| 88 |
top: 50%; |
| 89 |
background: none; |
| 90 |
border: none; |
| 91 |
padding: 0; |
| 92 |
margin: 0; |
| 93 |
width: 13px; |
| 94 |
height: 13px; |
| 95 |
cursor: pointer; |
| 96 |
display: flex; |
| 97 |
} |
| 98 |
.hurrytimer-sticky-close svg { |
| 99 |
fill: #333; |
| 100 |
width: 100%; |
| 101 |
height: 100%; |
| 102 |
} |
| 103 |
.hurrytimer-sticky-close:hover { |
| 104 |
opacity: 1; |
| 105 |
background: none; |
| 106 |
} |