owl.carousel.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Core Owl Carousel CSS File
  3. * v1.21
  4. */
  5. /* clearfix */
  6. .owl-carousel .owl-wrapper:after {
  7. content: ".";
  8. display: block;
  9. clear: both;
  10. visibility: hidden;
  11. line-height: 0;
  12. height: 0;
  13. }
  14. /* display none until init */
  15. .owl-carousel{
  16. display: none;
  17. position: relative;
  18. width: 100%;
  19. -ms-touch-action: pan-y;
  20. }
  21. .owl-carousel .owl-wrapper{
  22. display: none;
  23. position: relative;
  24. -webkit-transform: translate3d(0px, 0px, 0px);
  25. -webkit-perspective: 1000;
  26. }
  27. .owl-carousel .owl-wrapper-outer{
  28. overflow: hidden;
  29. position: relative;
  30. width: 100%;
  31. }
  32. .owl-carousel .owl-wrapper-outer.autoHeight{
  33. -webkit-transition: height 500ms ease-in-out;
  34. -moz-transition: height 500ms ease-in-out;
  35. -ms-transition: height 500ms ease-in-out;
  36. -o-transition: height 500ms ease-in-out;
  37. transition: height 500ms ease-in-out;
  38. }
  39. .owl-carousel .owl-item{
  40. float: left;
  41. }
  42. .owl-controls .owl-page,
  43. .owl-controls .owl-buttons div{
  44. cursor: pointer;
  45. }
  46. .owl-controls {
  47. -webkit-user-select: none;
  48. -khtml-user-select: none;
  49. -moz-user-select: none;
  50. -ms-user-select: none;
  51. user-select: none;
  52. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  53. }
  54. /* mouse grab icon */
  55. .grabbing {
  56. /*cursor:url(grabbing.png) 8 8, move;*/
  57. }
  58. /* fix */
  59. .owl-carousel .owl-wrapper,
  60. .owl-carousel .owl-item{
  61. -webkit-backface-visibility: hidden;
  62. -moz-backface-visibility: hidden;
  63. -ms-backface-visibility: hidden;
  64. }