dashboard-review-ask.css
4 years ago
ewd-ulb-main.css
4 years ago
ewd-us-admin.css
4 years ago
ewd-us-blocks.css
4 years ago
ewd-us-welcome-screen.css
4 years ago
ewd-us.css
4 years ago
plugin-deactivation.css
4 years ago
ewd-ulb-main.css
748 lines
| 1 | @charset "UTF-8"; |
| 2 | |
| 3 | |
| 4 | /* |
| 5 | ============================================== |
| 6 | Videos |
| 7 | ============================================== |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | iframe{ |
| 12 | height: 100%; |
| 13 | width:100%; |
| 14 | }*/ |
| 15 | |
| 16 | /*.ewd-ulb-video { |
| 17 | background: #000; |
| 18 | } |
| 19 | |
| 20 | .ewd-ulb-video-holder { |
| 21 | max-width: 640px; |
| 22 | margin: 0px auto; |
| 23 | } |
| 24 | |
| 25 | .ewd-ulb-video-holder > div { |
| 26 | position: relative; |
| 27 | padding-bottom: 60%; |
| 28 | height: 0px; |
| 29 | } |
| 30 | |
| 31 | .ewd-ulb-video-holder iframe { |
| 32 | position: absolute; |
| 33 | top: 0px; |
| 34 | left: 0px; |
| 35 | width: 100%; |
| 36 | height: 100%; |
| 37 | } |
| 38 | */ |
| 39 | |
| 40 | |
| 41 | /* |
| 42 | ============================================== |
| 43 | Lightbox |
| 44 | ============================================== |
| 45 | */ |
| 46 | |
| 47 | .ewd-ulb-hidden { |
| 48 | display: none; |
| 49 | } |
| 50 | |
| 51 | .ewd-ulb-lightbox { |
| 52 | cursor: pointer; |
| 53 | } |
| 54 | |
| 55 | /* BACKGROUND OVERLAY */ |
| 56 | .ewd-ulb-background { |
| 57 | z-index: 9000; |
| 58 | position: fixed; |
| 59 | top: 0; |
| 60 | left: 0; |
| 61 | width: 100%; |
| 62 | height: 100% !important; |
| 63 | background: #222; |
| 64 | background: rgba(0,0,0,.83); |
| 65 | } |
| 66 | |
| 67 | /* CONTAINER */ |
| 68 | .ewd-ulb-lightbox-container { |
| 69 | z-index: 9001; |
| 70 | position: fixed; |
| 71 | top: 0; |
| 72 | left: 0; |
| 73 | width: 100%; |
| 74 | height: 100%; |
| 75 | height: 100vh; |
| 76 | } |
| 77 | .ewd-ulb-slide-container { |
| 78 | position: relative; |
| 79 | float: left; |
| 80 | width: calc(100% - 160px); |
| 81 | padding: 0 10px; |
| 82 | height: calc(100% - 116px); |
| 83 | height: calc(100vh - 116px); |
| 84 | margin: 58px 80px 0; |
| 85 | } |
| 86 | .ewd-ulb-thumbnails-top .ewd-ulb-slide-container, .ewd-ulb-thumbnails-bottom .ewd-ulb-slide-container { |
| 87 | height: calc(100% - 222px); |
| 88 | height: calc(100vh - 222px); |
| 89 | } |
| 90 | @media screen and (max-width: 640px) { |
| 91 | .ewd-ulb-slide-container { |
| 92 | width: 96%; |
| 93 | margin: 58px 2% 0; |
| 94 | } |
| 95 | } |
| 96 | .ewd-ulb-thumbnails-top .ewd-ulb-slide-container { |
| 97 | margin-top: 164px; |
| 98 | } |
| 99 | .ewd-ulb-slide { |
| 100 | position: absolute; |
| 101 | left: 0; |
| 102 | top: 0; |
| 103 | width: 100%; |
| 104 | height: 100%; |
| 105 | /*display: none;*/ |
| 106 | visibility: hidden; |
| 107 | } |
| 108 | .ewd-ulb-active-slide { |
| 109 | /*display: block;*/ |
| 110 | visibility: visible; |
| 111 | } |
| 112 | |
| 113 | .ewd-ulb-old-active-slide.ewd-ulb-transition-next.ewd-ulb-no-transition, |
| 114 | .ewd-ulb-old-active-slide.ewd-ulb-transition-previous.ewd-ulb-no-transition { |
| 115 | /*display: none;*/ |
| 116 | visibility: hidden; |
| 117 | |
| 118 | } |
| 119 | |
| 120 | .ewd-ulb-active-slide.ewd-ulb-transition-next.ewd-ulb-horizontal-slide { |
| 121 | left: 100%; |
| 122 | -webkit-animation: 0.5s linear 0s slidein forwards; |
| 123 | -moz-animation: 0.5s linear 0s slidein forwards; |
| 124 | -o-animation: 0.5s linear 0s slidein forwards; |
| 125 | animation: 0.5s linear 0s slidein forwards; |
| 126 | } |
| 127 | @-webkit-keyframes slidein { |
| 128 | 100% { |
| 129 | left: 0px; |
| 130 | opacity: 1; |
| 131 | } |
| 132 | } |
| 133 | @-moz-keyframes slidein { |
| 134 | 100% { |
| 135 | left: 0px; |
| 136 | opacity: 1; |
| 137 | } |
| 138 | } |
| 139 | @-o-keyframes slidein { |
| 140 | 100% { |
| 141 | left: 0px; |
| 142 | opacity: 1; |
| 143 | } |
| 144 | } |
| 145 | @keyframes slidein { |
| 146 | 100% { |
| 147 | left: 0px; |
| 148 | opacity: 1; |
| 149 | } |
| 150 | } |
| 151 | .ewd-ulb-old-active-slide.ewd-ulb-transition-next.ewd-ulb-horizontal-slide { |
| 152 | left: 0px; |
| 153 | -webkit-animation: 0.5s linear 0s slideout forwards; |
| 154 | -moz-animation: 0.5s linear 0s slideout forwards; |
| 155 | -o-animation: 0.5s linear 0s slideout forwards; |
| 156 | animation: 0.5s linear 0s slideout forwards; |
| 157 | } |
| 158 | @-webkit-keyframes slideout { |
| 159 | 100% { |
| 160 | left: -100%; |
| 161 | opacity: 1; |
| 162 | } |
| 163 | } |
| 164 | @-moz-keyframes slideout { |
| 165 | 100% { |
| 166 | left: -100%; |
| 167 | opacity: 1; |
| 168 | } |
| 169 | } |
| 170 | @-o-keyframes slideout { |
| 171 | 100% { |
| 172 | left: -100%; |
| 173 | opacity: 1; |
| 174 | } |
| 175 | } |
| 176 | @keyframes slideout { |
| 177 | 100% { |
| 178 | left: -100%; |
| 179 | opacity: 1; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | .ewd-ulb-active-slide.ewd-ulb-transition-previous.ewd-ulb-horizontal-slide { |
| 184 | left: -100%; |
| 185 | -webkit-animation: 0.5s linear 0s prevSlidein forwards; |
| 186 | -moz-animation: 0.5s linear 0s prevSlidein forwards; |
| 187 | -o-animation: 0.5s linear 0s prevSlidein forwards; |
| 188 | animation: 0.5s linear 0s prevSlidein forwards; |
| 189 | } |
| 190 | @-webkit-keyframes prevSlidein { |
| 191 | 100% { |
| 192 | left: 0px; |
| 193 | opacity: 1; |
| 194 | } |
| 195 | } |
| 196 | @-moz-keyframes prevSlidein { |
| 197 | 100% { |
| 198 | left: 0px; |
| 199 | opacity: 1; |
| 200 | } |
| 201 | } |
| 202 | @-o-keyframes prevSlidein { |
| 203 | 100% { |
| 204 | left: 0px; |
| 205 | opacity: 1; |
| 206 | } |
| 207 | } |
| 208 | @keyframes prevSlidein { |
| 209 | 100% { |
| 210 | left: 0px; |
| 211 | opacity: 1; |
| 212 | } |
| 213 | } |
| 214 | .ewd-ulb-old-active-slide.ewd-ulb-transition-previous.ewd-ulb-horizontal-slide { |
| 215 | left: 0px; |
| 216 | -webkit-animation: 0.5s linear 0s prevSlideout forwards; |
| 217 | -moz-animation: 0.5s linear 0s prevSlideout forwards; |
| 218 | -o-animation: 0.5s linear 0s prevSlideout forwards; |
| 219 | animation: 0.5s linear 0s prevSlideout forwards; |
| 220 | } |
| 221 | @-webkit-keyframes prevSlideout { |
| 222 | 100% { |
| 223 | left: 100%; |
| 224 | opacity: 1; |
| 225 | } |
| 226 | } |
| 227 | @-moz-keyframes prevSlideout { |
| 228 | 100% { |
| 229 | left: 100%; |
| 230 | opacity: 1; |
| 231 | } |
| 232 | } |
| 233 | @-o-keyframes prevSlideout { |
| 234 | 100% { |
| 235 | left: 100%; |
| 236 | opacity: 1; |
| 237 | } |
| 238 | } |
| 239 | @keyframes prevSlideout { |
| 240 | 100% { |
| 241 | left: 100%; |
| 242 | opacity: 1; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | .ewd-ulb-active-slide.ewd-ulb-zoom-one .ewd-ulb-slide-img img { |
| 247 | -moz-transform: scale(1.4); |
| 248 | -webkit-transform: scale(1.4); |
| 249 | transform: scale(1.4); |
| 250 | } |
| 251 | .ewd-ulb-active-slide.ewd-ulb-zoom-two .ewd-ulb-slide-img img { |
| 252 | -moz-transform: scale(1.8); |
| 253 | -webkit-transform: scale(1.8); |
| 254 | transform: scale(1.8); |
| 255 | } |
| 256 | .ewd-ulb-slide-img { |
| 257 | position: relative; |
| 258 | float: left; |
| 259 | width: 100%; |
| 260 | height: 100%; |
| 261 | display: inline-block; |
| 262 | text-align: center; |
| 263 | } |
| 264 | .ewd-ulb-slide-img img { |
| 265 | display: inline-block; |
| 266 | position: relative; |
| 267 | float: none; |
| 268 | width: auto; |
| 269 | height: auto; |
| 270 | max-width: 100%; |
| 271 | max-height: 100%; |
| 272 | } |
| 273 | .ewd-ulb-slide-img:before { |
| 274 | content: ""; |
| 275 | display: inline-block; |
| 276 | height: 50%; |
| 277 | width: 1px; |
| 278 | margin-right: -1px; |
| 279 | } |
| 280 | |
| 281 | /* IMAGE TITLE AND DESCRIPTION */ |
| 282 | .ewd-ulb-slide .ewd-ulb-slide-overlay { |
| 283 | display: block; |
| 284 | position: absolute; |
| 285 | bottom: 0; |
| 286 | min-height: 48px; |
| 287 | width: 100%; |
| 288 | padding: 14px 16px; |
| 289 | background: #111; |
| 290 | background: rgba(0,0,0,.6); |
| 291 | color: #fff; |
| 292 | margin: 0 auto; |
| 293 | box-sizing: border-box; |
| 294 | } |
| 295 | .ewd-ulb-slide-title { |
| 296 | clear: both; |
| 297 | position: relative; |
| 298 | float: left; |
| 299 | width: 100%; |
| 300 | margin-bottom: 8px; |
| 301 | font-size: 1.5em; |
| 302 | text-align: center; |
| 303 | } |
| 304 | .ewd-ulb-slide-description { |
| 305 | clear: both; |
| 306 | position: relative; |
| 307 | float: left; |
| 308 | width: 100%; |
| 309 | font-size: .9em; |
| 310 | text-align: center; |
| 311 | } |
| 312 | |
| 313 | /* TOOLBARS */ |
| 314 | .ewd-ulb-top-toolbar, .ewd-ulb-bottom-toolbar { |
| 315 | position: absolute; |
| 316 | left: 0; |
| 317 | width: 100%; |
| 318 | height: 48px; |
| 319 | z-index: 2; |
| 320 | background: #111; |
| 321 | background: rgba(0,0,0,.5); |
| 322 | color: #fff; |
| 323 | } |
| 324 | .ewd-ulb-top-toolbar { |
| 325 | top: 0; |
| 326 | } |
| 327 | .ewd-ulb-bottom-toolbar { |
| 328 | bottom: 0; |
| 329 | background: #111; |
| 330 | background: rgba(0,0,0,.625); |
| 331 | } |
| 332 | .ewd-ulb-left-top-toolbar, .ewd-ulb-right-top-toolbar, .ewd-ulb-left-bottom-toolbar, .ewd-ulb-right-bottom-toolbar { |
| 333 | position: relative; |
| 334 | width: auto; |
| 335 | height: 100%; |
| 336 | padding: 8px 16px; |
| 337 | } |
| 338 | .ewd-ulb-left-top-toolbar, .ewd-ulb-left-bottom-toolbar { |
| 339 | float: left; |
| 340 | } |
| 341 | .ewd-ulb-right-top-toolbar, .ewd-ulb-right-bottom-toolbar { |
| 342 | float: right; |
| 343 | } |
| 344 | |
| 345 | .ewd-ulb-control { |
| 346 | position: relative; |
| 347 | float: left; |
| 348 | margin: 0 4px; |
| 349 | cursor: pointer; |
| 350 | font-size: 2em; //PChanges |
| 351 | } |
| 352 | .ewd-ulb-slide-counter { |
| 353 | font-size: 1em; |
| 354 | } |
| 355 | |
| 356 | /* PREVIOUS NEXT */ |
| 357 | .ewd-ulb-slide-control { |
| 358 | position: absolute; |
| 359 | width: 80px; |
| 360 | height: 80px; |
| 361 | top: calc(50% - 40px); |
| 362 | top: calc(50vh - 40px); |
| 363 | font-size: 1.4em; |
| 364 | background: #111; |
| 365 | background: rgba(0,0,0,.4); |
| 366 | text-align: center; |
| 367 | padding-top: 20px; |
| 368 | color: #fff; |
| 369 | z-index: 3; |
| 370 | cursor: pointer; |
| 371 | } |
| 372 | .ewd-ulb-slide-control:hover { |
| 373 | background: #111; |
| 374 | background: rgba(0,0,0,.7); |
| 375 | } |
| 376 | .ewd-ulb-slide-control-previous { |
| 377 | left: 0; |
| 378 | } |
| 379 | .ewd-ulb-slide-control-next { |
| 380 | right: 0; |
| 381 | } |
| 382 | |
| 383 | /* THUMBNAILS */ |
| 384 | .ewd-ulb-thumbnail-hidden { |
| 385 | display: none; |
| 386 | } |
| 387 | .ewd-ulb-bottom-thumbnail-bar, .ewd-ulb-top-thumbnail-bar { |
| 388 | position: absolute; |
| 389 | left: 0; |
| 390 | width: 100%; |
| 391 | height: 106px; |
| 392 | background: #111; |
| 393 | background: rgba(0,0,0,.25); |
| 394 | display: none; |
| 395 | } |
| 396 | .ewd-ulb-bottom-thumbnail-bar { |
| 397 | bottom: 48px; |
| 398 | } |
| 399 | .ewd-ulb-top-thumbnail-bar { |
| 400 | top: 48px; |
| 401 | } |
| 402 | .ewd-ulb-thumbnails-bottom .ewd-ulb-bottom-thumbnail-bar { |
| 403 | display: block; |
| 404 | } |
| 405 | .ewd-ulb-thumbnails-bottom .ewd-ulb-top-thumbnail-bar { |
| 406 | display: none; |
| 407 | } |
| 408 | .ewd-ulb-thumbnails-top .ewd-ulb-top-thumbnail-bar { |
| 409 | display: block; |
| 410 | } |
| 411 | .ewd-ulb-thumbnails-top .ewd-ulb-bottom-thumbnail-bar { |
| 412 | display: none; |
| 413 | } |
| 414 | .ewd-ulb-bottom-thumbnail-bar.ewd-ulb-thumbnail-bar-hidden, |
| 415 | .ewd-ulb-top-thumbnail-bar.ewd-ulb-thumbnail-bar-hidden { |
| 416 | display: none; |
| 417 | } |
| 418 | .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails { |
| 419 | position: relative; |
| 420 | float: left; |
| 421 | width: 864px; |
| 422 | height: 100%; |
| 423 | margin-left: 50%; |
| 424 | right: 432px; |
| 425 | overflow: hidden; |
| 426 | } |
| 427 | @media screen and (max-width: 960px) { |
| 428 | .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails { |
| 429 | width: 720px; |
| 430 | right: 360px; |
| 431 | } |
| 432 | } |
| 433 | @media screen and (max-width: 800px) { |
| 434 | .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails { |
| 435 | width: 576px; |
| 436 | right: 288px; |
| 437 | } |
| 438 | } |
| 439 | @media screen and (max-width: 640px) { |
| 440 | .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails { |
| 441 | width: 432px; |
| 442 | right: 216px; |
| 443 | } |
| 444 | } |
| 445 | @media screen and (max-width: 480px) { |
| 446 | .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails { |
| 447 | width: 288px; |
| 448 | right: 144px; |
| 449 | } |
| 450 | } |
| 451 | .ewd-ulb-thumbnails-inside { |
| 452 | position: relative; |
| 453 | float: left; |
| 454 | width: 300000000000%; |
| 455 | } |
| 456 | .ewd-ulb-slide-thumbnail { |
| 457 | position: relative; |
| 458 | float: left; |
| 459 | width: 128px; |
| 460 | height: 106px; |
| 461 | margin: 0 8px; |
| 462 | cursor: pointer; |
| 463 | text-align: center; |
| 464 | } |
| 465 | .ewd-ulb-slide-thumbnail img { |
| 466 | position: relative; |
| 467 | margin-top: 10px; |
| 468 | width: auto; |
| 469 | height: auto; |
| 470 | max-width: 128px; |
| 471 | max-height: 86px; |
| 472 | } |
| 473 | .ewd-ulb-active-thumbnail img { |
| 474 | border: 3px solid #fff; |
| 475 | } |
| 476 | |
| 477 | .ewd-thumbnail-toggle { |
| 478 | position: relative; |
| 479 | top: 10px; |
| 480 | left: 10px; |
| 481 | cursor: pointer; |
| 482 | color: #fff; |
| 483 | z-index: 5; |
| 484 | } |
| 485 | .ewd-thumbnail-toggle-up { |
| 486 | top: 84px; |
| 487 | } |
| 488 | .ewd-thumbnail-toggle-top.ewd-thumbnail-toggle-up { |
| 489 | top: 120px; |
| 490 | } |
| 491 | .ewd-thumbnail-toggle-top.ewd-thumbnail-toggle-down { |
| 492 | top: 48px; |
| 493 | } |
| 494 | .ewd-thumbnail-scroll-button { |
| 495 | position: absolute; |
| 496 | top: 40px; |
| 497 | width: 24px; |
| 498 | height: 24px; |
| 499 | background: transparent; |
| 500 | cursor: pointer; |
| 501 | z-index: 2; |
| 502 | font-family: 'untitled-font-7'; |
| 503 | font-size: 18px; |
| 504 | color: #fff; |
| 505 | } |
| 506 | .ewd-thumbnail-scroll-button-left { |
| 507 | left: 48px; |
| 508 | } |
| 509 | .ewd-thumbnail-scroll-button-right { |
| 510 | right: 48px; |
| 511 | } |
| 512 | @media screen and (max-width: 716px) { |
| 513 | .ewd-thumbnail-scroll-button-left { |
| 514 | left: 24px; |
| 515 | } |
| 516 | .ewd-thumbnail-scroll-button-right { |
| 517 | right: 24px; |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | @media screen and (max-width: 480px) { |
| 522 | .ewd-ulb-mobile-hide { |
| 523 | display: none !important; |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | |
| 528 | /****************************************************** |
| 529 | * IFRAMES |
| 530 | ******************************************************/ |
| 531 | .ewd-ulb-iframe-parent { |
| 532 | position: relative; |
| 533 | } |
| 534 | |
| 535 | .ewd-ulb-overlay { |
| 536 | position: absolute; |
| 537 | cursor: pointer; |
| 538 | right: 0; |
| 539 | top: 0; |
| 540 | width: 100%; |
| 541 | height: 100%; |
| 542 | } |
| 543 | |
| 544 | .ewd-ulb-slide-img iframe { |
| 545 | display: block; |
| 546 | margin: 0 auto; |
| 547 | max-height: 100%; |
| 548 | max-width: 100%; |
| 549 | } |
| 550 | |
| 551 | /****************************************************** |
| 552 | * FONTS |
| 553 | ******************************************************/ |
| 554 | |
| 555 | @font-face { /* declare fonts */ |
| 556 | font-family: 'untitled-font-7'; |
| 557 | src: url("../fonts/ewd-lightbox-arrow/untitled-font-7.eot"); |
| 558 | src: url('../fonts/ewd-lightbox-arrow/untitled-font-7.woff2') format('woff2'), |
| 559 | url('../fonts/ewd-lightbox-arrow/untitled-font-7.woff') format('woff'), |
| 560 | url("../fonts/ewd-lightbox-arrow/untitled-font-7.ttf") format("truetype"), |
| 561 | url("../fonts/ewd-lightbox-arrow/untitled-font-7.svg#untitled-font-7") format("svg"); |
| 562 | font-weight: normal; |
| 563 | font-style: normal; |
| 564 | } |
| 565 | |
| 566 | .ewd-ulb-arrow { |
| 567 | font-family: 'untitled-font-7'; |
| 568 | } |
| 569 | |
| 570 | @font-face { /* declare fonts */ |
| 571 | font-family: 'ewd-lightbox-autoplay'; |
| 572 | src: url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.eot"); |
| 573 | src: url('../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.woff2') format('woff2'), |
| 574 | url('../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.woff') format('woff'), |
| 575 | url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.ttf") format("truetype"), |
| 576 | url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.svg#ewd-lightbox-autoplay") format("svg"); |
| 577 | font-weight: normal; |
| 578 | font-style: normal; |
| 579 | } |
| 580 | |
| 581 | .ewd-ulb-autoplay { |
| 582 | font-family: 'ewd-lightbox-autoplay'; |
| 583 | } |
| 584 | |
| 585 | @font-face { /* declare fonts */ |
| 586 | font-family: 'ewd-lightbox-close'; |
| 587 | src: url("../fonts/ewd-lightbox-close/ewd-lightbox-close.eot"); |
| 588 | src: url('../fonts/ewd-lightbox-close/ewd-lightbox-close.woff2') format('woff2'), |
| 589 | url('../fonts/ewd-lightbox-close/ewd-lightbox-close.woff') format('woff'), |
| 590 | url("../fonts/ewd-lightbox-close/ewd-lightbox-close.ttf") format("truetype"), |
| 591 | url("../fonts/ewd-lightbox-close/ewd-lightbox-close.svg#ewd-lightbox-close") format("svg"); |
| 592 | font-weight: normal; |
| 593 | font-style: normal; |
| 594 | } |
| 595 | |
| 596 | .ewd-ulb-exit { |
| 597 | font-family: 'ewd-lightbox-close'; |
| 598 | } |
| 599 | |
| 600 | @font-face { /* declare fonts */ |
| 601 | font-family: 'ewd-lightbox-download'; |
| 602 | src: url("../fonts/ewd-lightbox-download/ewd-lightbox-download.eot"); |
| 603 | src: url('../fonts/ewd-lightbox-arrow/ewd-lightbox-download.woff2') format('woff2'), |
| 604 | url('../fonts/ewd-lightbox-arrow/ewd-lightbox-download.woff') format('woff'), |
| 605 | url("../fonts/ewd-lightbox-download/ewd-lightbox-download.ttf") format("truetype"), |
| 606 | url("../fonts/ewd-lightbox-download/ewd-lightbox-download.svg#ewd-lightbox-download") format("svg"); |
| 607 | font-weight: normal; |
| 608 | font-style: normal; |
| 609 | } |
| 610 | |
| 611 | .ewd-ulb-download { |
| 612 | font-family: 'ewd-lightbox-download'; |
| 613 | color: white; |
| 614 | } |
| 615 | |
| 616 | @font-face { /* declare fonts */ |
| 617 | font-family: 'ewd-lightbox-exit-fullscreen'; |
| 618 | src: url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.eot"); |
| 619 | src: url('../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.woff2') format('woff2'), |
| 620 | url('../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.woff') format('woff'), |
| 621 | url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.ttf") format("truetype"), |
| 622 | url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.svg#ewd-lightbox-exit-fullscreen") format("svg"); |
| 623 | font-weight: normal; |
| 624 | font-style: normal; |
| 625 | } |
| 626 | |
| 627 | .ewd-ulb-regular_screen { |
| 628 | font-family: 'ewd-lightbox-exit-fullscreen'; |
| 629 | } |
| 630 | |
| 631 | @font-face { /* declare fonts */ |
| 632 | font-family: 'ewd-lightbox-fullscreen'; |
| 633 | src: url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.eot"); |
| 634 | src: url('../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.woff2') format('woff2'), |
| 635 | url('../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.woff') format('woff'), |
| 636 | url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.ttf") format("truetype"), |
| 637 | url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.svg#ewd-lightbox-fullscreen") format("svg"); |
| 638 | font-weight: normal; |
| 639 | font-style: normal; |
| 640 | } |
| 641 | |
| 642 | .ewd-ulb-fullscreen { |
| 643 | font-family: 'ewd-lightbox-fullscreen'; |
| 644 | } |
| 645 | |
| 646 | @font-face { /* declare fonts */ |
| 647 | font-family: 'ewd-lightbox-original'; |
| 648 | src: url("../fonts/ewd-lightbox-original/ewd-lightbox-original.eot"); |
| 649 | src: url('../fonts/ewd-lightbox-original/ewd-lightbox-original.woff2') format('woff2'), |
| 650 | url('../fonts/ewd-lightbox-original/ewd-lightbox-original.woff') format('woff'), |
| 651 | url("../fonts/ewd-lightbox-original/ewd-lightbox-original.ttf") format("truetype"), |
| 652 | url("../fonts/ewd-lightbox-original/ewd-lightbox-original.svg#ewd-lightbox-original") format("svg"); |
| 653 | font-weight: normal; |
| 654 | font-style: normal; |
| 655 | } |
| 656 | |
| 657 | .ewd-ulb-fullsize { |
| 658 | font-family: 'ewd-lightbox-original'; |
| 659 | } |
| 660 | |
| 661 | @font-face { /* declare fonts */ |
| 662 | font-family: 'ewd-lightbox-share'; |
| 663 | src: url("../fonts/ewd-lightbox-share/ewd-lightbox-share.eot"); |
| 664 | src: url('../fonts/ewd-lightbox-share/ewd-lightbox-share.woff2') format('woff2'), |
| 665 | url('../fonts/ewd-lightbox-share/ewd-lightbox-share.woff') format('woff'), |
| 666 | url("../fonts/ewd-lightbox-share/ewd-lightbox-share.ttf") format("truetype"), |
| 667 | url("../fonts/ewd-lightbox-share/ewd-lightbox-share.svg#ewd-lightbox-share") format("svg"); |
| 668 | font-weight: normal; |
| 669 | font-style: normal; |
| 670 | } |
| 671 | |
| 672 | .ewd-ulb-share { |
| 673 | font-family: 'ewd-lightbox-share'; |
| 674 | } |
| 675 | |
| 676 | @font-face { /* declare fonts */ |
| 677 | font-family: 'ewd-lightbox-thumbnail'; |
| 678 | src: url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.eot"); |
| 679 | src: url('../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.woff2') format('woff2'), |
| 680 | url('../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.woff') format('woff'), |
| 681 | url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.ttf") format("truetype"), |
| 682 | url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.svg#ewd-lightbox-thumbnail") format("svg"); |
| 683 | font-weight: normal; |
| 684 | font-style: normal; |
| 685 | } |
| 686 | |
| 687 | .ewd-ulb-thumbnail { |
| 688 | font-family: 'ewd-lightbox-thumbnail'; |
| 689 | } |
| 690 | |
| 691 | @font-face { /* declare fonts */ |
| 692 | font-family: 'ewd-lightbox-unzoom'; |
| 693 | src: url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.eot"); |
| 694 | src: url('../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.woff2') format('woff2'), |
| 695 | url('../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.woff') format('woff'), |
| 696 | url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.ttf") format("truetype"), |
| 697 | url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.svg#ewd-lightbox-unzoom") format("svg"); |
| 698 | font-weight: normal; |
| 699 | font-style: normal; |
| 700 | } |
| 701 | |
| 702 | .ewd-ulb-zoom_out { |
| 703 | font-family: 'ewd-lightbox-unzoom'; |
| 704 | } |
| 705 | |
| 706 | @font-face { /* declare fonts */ |
| 707 | font-family: 'ewd-lightbox-zoom'; |
| 708 | src: url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.eot"); |
| 709 | src: url('../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.woff2') format('woff2'), |
| 710 | url('../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.woff') format('woff'), |
| 711 | url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.ttf") format("truetype"), |
| 712 | url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.svg#ewd-lightbox-zoom") format("svg"); |
| 713 | font-weight: normal; |
| 714 | font-style: normal; |
| 715 | } |
| 716 | |
| 717 | .ewd-ulb-zoom { |
| 718 | font-family: 'ewd-lightbox-zoom'; |
| 719 | } |
| 720 | |
| 721 | /****************************************************** |
| 722 | * FINGER SWIPE |
| 723 | ******************************************************/ |
| 724 | |
| 725 | .animate { |
| 726 | transition: transform 0.3s ease-out; |
| 727 | } |
| 728 | |
| 729 | .ms-touch.slider |
| 730 | { |
| 731 | overflow-x: scroll; |
| 732 | overflow-y: hidden; |
| 733 | |
| 734 | -ms-overflow-style: none; |
| 735 | /* Hides the scrollbar. */ |
| 736 | |
| 737 | -ms-scroll-chaining: none; |
| 738 | /* Prevents Metro from swiping to the next tab or app. */ |
| 739 | |
| 740 | -ms-scroll-snap-type: mandatory; |
| 741 | /* Forces a snap scroll behavior on your images. */ |
| 742 | |
| 743 | -ms-scroll-snap-points-x: snapInterval(0%, 100%); |
| 744 | /* Defines the y and x intervals to snap to when scrolling. */ |
| 745 | } |
| 746 | |
| 747 | |
| 748 |