| 1 |
/* ========================================================================== |
| 2 |
Classic |
| 3 |
========================================================================== */ |
| 4 |
|
| 5 |
.ujic-classic *{ |
| 6 |
box-sizing: content-box!important; |
| 7 |
-webkit-box-sizing: content-box!important; |
| 8 |
} |
| 9 |
|
| 10 |
.ujic-classic{ |
| 11 |
position: relative; |
| 12 |
overflow: hidden; |
| 13 |
} |
| 14 |
|
| 15 |
.ujic-classic .countdown_section { |
| 16 |
float:left; |
| 17 |
display: block; |
| 18 |
text-align: center; |
| 19 |
margin: 0 15px 0 0; |
| 20 |
} |
| 21 |
|
| 22 |
.ujic-classic span.countdown_amount { |
| 23 |
display: inline-block; |
| 24 |
color: #fff; |
| 25 |
padding: 5px 10px; |
| 26 |
margin-right: 2px; |
| 27 |
|
| 28 |
font: 35px/1.5 'Open Sans Condensed',sans-serif; |
| 29 |
font-weight: normal; |
| 30 |
|
| 31 |
box-shadow:1px 1px 1px rgba(4, 4, 4, 0.35); |
| 32 |
|
| 33 |
-webkit-border-radius: 5px; |
| 34 |
-ms-border-radius: 5px; |
| 35 |
-moz-border-radius: 5px; |
| 36 |
-o-border-radius: 5px; |
| 37 |
border-radius: 5px; |
| 38 |
text-shadow: 1px 1px 1px #000; |
| 39 |
|
| 40 |
background: #a61ba6; /* Old browsers */ |
| 41 |
background: -moz-linear-gradient(top, #a61ba6 50%, #c368c3 50%); /* FF3.6+ */ |
| 42 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#a61ba6), color-stop(50%,#c368c3)); /* Chrome,Safari4+ */ |
| 43 |
background: -webkit-linear-gradient(top, #a61ba6 50%,#c368c3 50%); /* Chrome10+,Safari5.1+ */ |
| 44 |
background: -o-linear-gradient(top, #a61ba6 50%,#c368c3 50%); /* Opera 11.10+ */ |
| 45 |
background: -ms-linear-gradient(top, #a61ba6 50%,#c368c3 50%); /* IE10+ */ |
| 46 |
background: linear-gradient(to bottom, #a61ba6 50%,#c368c3 50%); /* W3C */ |
| 47 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a61ba6', endColorstr='#c368c3',GradientType=0 ); /* IE6-9 */ |
| 48 |
|
| 49 |
} |
| 50 |
|
| 51 |
.ujic-classic span.countdown_txt { |
| 52 |
display: block; |
| 53 |
text-align: center; |
| 54 |
margin: 5px 0 0 0; |
| 55 |
clear: both; |
| 56 |
} |
| 57 |
|
| 58 |
.ujic-animate-numbers .ujic-number-value.ujic-number-changing, |
| 59 |
.ujic-animate-numbers .circles-text.ujic-number-changing { |
| 60 |
display: inline-block; |
| 61 |
animation: ujic-number-change 180ms ease-out; |
| 62 |
will-change: opacity, transform; |
| 63 |
} |
| 64 |
|
| 65 |
@keyframes ujic-number-change { |
| 66 |
0% { |
| 67 |
opacity: 0.45; |
| 68 |
transform: translateY(6px) scale(0.96); |
| 69 |
} |
| 70 |
|
| 71 |
100% { |
| 72 |
opacity: 1; |
| 73 |
transform: translateY(0) scale(1); |
| 74 |
} |
| 75 |
} |
| 76 |
|
| 77 |
@media (prefers-reduced-motion: reduce) { |
| 78 |
.ujic-animate-numbers .ujic-number-value.ujic-number-changing, |
| 79 |
.ujic-animate-numbers .circles-text.ujic-number-changing { |
| 80 |
animation: none; |
| 81 |
} |
| 82 |
} |
| 83 |
|
| 84 |
/* Visual Composer Fixes */ |
| 85 |
.ujic-hold{ |
| 86 |
padding: 0!important; |
| 87 |
float: none!important; |
| 88 |
} |
| 89 |
|
| 90 |
/* The ghost, nudged to maintain perfect centering */ |
| 91 |
.ujic-hold:before { |
| 92 |
content: ''; |
| 93 |
display: inline-block; |
| 94 |
height: 100%; |
| 95 |
vertical-align: middle; |
| 96 |
margin-right: -0.25em; /* Adjusts for spacing */ |
| 97 |
} |
| 98 |
|
| 99 |
.ujic-hold .ujiCountdown { |
| 100 |
display: inline-block; |
| 101 |
vertical-align: middle; |
| 102 |
} |
| 103 |
|
| 104 |
.ujic_center{ |
| 105 |
text-align: center; |
| 106 |
} |
| 107 |
|
| 108 |
.ujic_left{ |
| 109 |
text-align: left; |
| 110 |
} |
| 111 |
|
| 112 |
.ujic_right{ |
| 113 |
text-align: right; |
| 114 |
} |
| 115 |
|
| 116 |
.ujic_right:after{ |
| 117 |
clear: both; |
| 118 |
float: none; |
| 119 |
} |
| 120 |
|
| 121 |
.countdown_section { |
| 122 |
width: auto!important; |
| 123 |
text-transform: none!important; |
| 124 |
} |
| 125 |
|
| 126 |
/* ========================================================================== |
| 127 |
Newsletter |
| 128 |
========================================================================== */ |
| 129 |
|
| 130 |
.ujicf:before, .ujicf:after { content: ""; display: table; } |
| 131 |
.ujicf:after { clear: both; } |
| 132 |
.ujicf { *zoom: 1; } |
| 133 |
|
| 134 |
#ujiCountdown |
| 135 |
{ |
| 136 |
display:inline-block; |
| 137 |
margin-bottom:0; |
| 138 |
} |
| 139 |
|
| 140 |
#ujiCountdown span.countdown_row |
| 141 |
{ |
| 142 |
display:block; |
| 143 |
} |
| 144 |
|
| 145 |
#ujiCountdown span.ujic_s |
| 146 |
{ |
| 147 |
margin-right: 0; |
| 148 |
} |
| 149 |
|
| 150 |
#uji-wrapper |
| 151 |
{ |
| 152 |
display:inline-block; |
| 153 |
margin: 0 auto; |
| 154 |
box-sizing: content-box!important; |
| 155 |
-webkit-box-sizing: content-box!important; |
| 156 |
} |
| 157 |
|
| 158 |
.ujic-hold form |
| 159 |
{ |
| 160 |
display:block; |
| 161 |
margin: 0; |
| 162 |
padding: 0; |
| 163 |
overflow: hidden; |
| 164 |
width: 100%; |
| 165 |
} |
| 166 |
|
| 167 |
.ujic-hold form span |
| 168 |
{ |
| 169 |
display: block; |
| 170 |
font-size: 13px; |
| 171 |
font-weight: 600; |
| 172 |
line-height: 1.1em; |
| 173 |
margin: 1em 0; |
| 174 |
text-align: center; |
| 175 |
} |
| 176 |
|
| 177 |
.ujic-hold form p |
| 178 |
{ |
| 179 |
width:100%; |
| 180 |
display: inline-block; |
| 181 |
margin: 0 auto !important; |
| 182 |
text-align: center; |
| 183 |
} |
| 184 |
|
| 185 |
.ujic-hold form input |
| 186 |
{ |
| 187 |
display: inline !important; |
| 188 |
margin: 0 !important; |
| 189 |
padding: 0 !important; |
| 190 |
height: 30px !important; |
| 191 |
} |
| 192 |
|
| 193 |
.ujic-hold form div |
| 194 |
{ |
| 195 |
text-align: center; |
| 196 |
} |
| 197 |
|
| 198 |
.ujic-hold form input[type="text"] |
| 199 |
{ |
| 200 |
background: none repeat scroll 0 0 #fff; |
| 201 |
border: medium none; |
| 202 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; |
| 203 |
border-radius: 3px 0 0 3px; |
| 204 |
font-size: 13px; |
| 205 |
margin: 0; |
| 206 |
padding: 0px 5%; |
| 207 |
text-align: center; |
| 208 |
width: 70%; |
| 209 |
float:left; |
| 210 |
} |
| 211 |
|
| 212 |
.ujic-hold form input[type="submit"] |
| 213 |
{ |
| 214 |
border-radius: 0 3px 3px 0; |
| 215 |
font-size: 13px; |
| 216 |
font-weight: 600; |
| 217 |
margin: 0; |
| 218 |
padding: 0 3%; |
| 219 |
text-transform: uppercase; |
| 220 |
width: 30%; |
| 221 |
border: medium none; |
| 222 |
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset; |
| 223 |
color: #fff; |
| 224 |
background: linear-gradient(to bottom , #c816d0, #ab02b2) repeat scroll 0 0 rgba(0, 0, 0, 0); |
| 225 |
float:left; |
| 226 |
} |
| 227 |
.ujic-hold form span.uji-msg-err |
| 228 |
{ |
| 229 |
color:#CE0000; |
| 230 |
} |
| 231 |
.ujic-hold form span.uji-msg-ok |
| 232 |
{ |
| 233 |
color:green; |
| 234 |
} |
| 235 |
|
| 236 |
.ujic-hold form div span |
| 237 |
{ |
| 238 |
display: none; |
| 239 |
line-height: 1em; |
| 240 |
margin: 0; |
| 241 |
text-align: center; |
| 242 |
} |
| 243 |
|
| 244 |
/* ========================================================================== |
| 245 |
RTL |
| 246 |
========================================================================== */ |
| 247 |
.countdown-rtl{ |
| 248 |
direction: initial; |
| 249 |
} |
| 250 |
|
| 251 |
|
| 252 |
/* ========================================================================== |
| 253 |
Modern |
| 254 |
========================================================================== */ |
| 255 |
.ujic-modern .ujicircle{ |
| 256 |
display: inline-block; |
| 257 |
margin: 0.5em; |
| 258 |
} |
| 259 |
|
| 260 |
.ujic-modern .circles-wrp span.countdown_txt { |
| 261 |
text-align: center; |
| 262 |
display: block; |
| 263 |
} |
| 264 |
|