owl.theme.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Owl Carousel Owl Demo Theme
  3. * v1.3.3
  4. */
  5. .owl-theme .owl-controls{
  6. margin-top: 16px;
  7. text-align: center;
  8. }
  9. /* Styling Next and Prev buttons */
  10. .owl-theme .owl-controls .owl-buttons div{
  11. color: #FFF;
  12. display: inline-block;
  13. zoom: 1;
  14. *display: inline;/*IE7 life-saver */
  15. margin: 5px;
  16. padding: 3px 10px;
  17. font-size: 12px;
  18. -webkit-border-radius: 30px;
  19. -moz-border-radius: 30px;
  20. border-radius: 30px;
  21. background: #888888;
  22. filter: Alpha(Opacity=50);/*IE7 fix*/
  23. opacity: 0.5;
  24. }
  25. /* Clickable class fix problem with hover on touch devices */
  26. /* Use it for non-touch hover action */
  27. .owl-theme .owl-controls.clickable .owl-buttons div:hover{
  28. filter: Alpha(Opacity=100);/*IE7 fix*/
  29. opacity: 1;
  30. text-decoration: none;
  31. }
  32. /* Styling Pagination*/
  33. .owl-theme .owl-controls .owl-page{
  34. display: inline-block;
  35. zoom: 1;
  36. *display: inline;/*IE7 life-saver */
  37. }
  38. .owl-theme .owl-controls .owl-page span{
  39. display: block;
  40. width: 8px;
  41. height: 8px;
  42. margin: 3px 5px;
  43. filter: Alpha(Opacity=50);/*IE7 fix*/
  44. opacity: 0.5;
  45. -webkit-border-radius: 20px;
  46. -moz-border-radius: 20px;
  47. border-radius: 20px;
  48. background: #888888;
  49. }
  50. .owl-theme .owl-controls .owl-page.active span,
  51. .owl-theme .owl-controls.clickable .owl-page:hover span{
  52. filter: Alpha(Opacity=100);/*IE7 fix*/
  53. opacity: 1;
  54. background: #999;
  55. border-color: transparent;
  56. }
  57. /* If PaginationNumbers is true */
  58. .owl-theme .owl-controls .owl-page span.owl-numbers{
  59. height: auto;
  60. width: auto;
  61. color: #FFF;
  62. padding: 2px 10px;
  63. font-size: 12px;
  64. -webkit-border-radius: 30px;
  65. -moz-border-radius: 30px;
  66. border-radius: 30px;
  67. }
  68. /* preloading images */
  69. .owl-item.loading{
  70. min-height: 150px;
  71. background: url(AjaxLoader.gif) no-repeat center center
  72. }