Просмотр файла KoolTube/owl-carousel/owl.carousel.css

Размер файла: 1.44Kb
  1. /*
  2. * Core Owl Carousel CSS File
  3. * v1.3.3
  4. */
  5.  
  6. /* clearfix */
  7. .owl-carousel .owl-wrapper:after {
  8. content: ".";
  9. display: block;
  10. clear: both;
  11. visibility: hidden;
  12. line-height: 0;
  13. height: 0;
  14. }
  15. /* display none until init */
  16. .owl-carousel{
  17. display: none;
  18. position: relative;
  19. width: 100%;
  20. -ms-touch-action: pan-y;
  21. }
  22. .owl-carousel .owl-wrapper{
  23. display: none;
  24. position: relative;
  25. -webkit-transform: translate3d(0px, 0px, 0px);
  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.  
  55. /* mouse grab icon */
  56. .grabbing {
  57. cursor:url(grabbing.png) 8 8, move;
  58. }
  59.  
  60. /* fix */
  61. .owl-carousel .owl-wrapper,
  62. .owl-carousel .owl-item{
  63. -webkit-backface-visibility: hidden;
  64. -moz-backface-visibility: hidden;
  65. -ms-backface-visibility: hidden;
  66. -webkit-transform: translate3d(0,0,0);
  67. -moz-transform: translate3d(0,0,0);
  68. -ms-transform: translate3d(0,0,0);
  69. }
  70.