owl.theme.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Owl Carousel Owl Demo Theme
  3. * v1.24
  4. */
  5. .owl-theme .owl-controls{
  6. margin-top: 20px;
  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: #869791;
  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: 10px;
  41. height: 10px;
  42. margin: 5px;
  43. filter: Alpha(Opacity=50);/*IE7 fix*/
  44. opacity: 1;
  45. -webkit-border-radius: 20px;
  46. -moz-border-radius: 20px;
  47. border-radius: 20px;
  48. background: transparent;
  49. border: 1px solid #cfcfcf;
  50. }
  51. .owl-theme .owl-controls .owl-page.active span,
  52. .owl-theme .owl-controls.clickable .owl-page:hover span{
  53. }
  54. /* If PaginationNumbers is true */
  55. .owl-theme .owl-controls .owl-page span.owl-numbers{
  56. height: auto;
  57. width: auto;
  58. color: #FFF;
  59. padding: 2px 10px;
  60. font-size: 12px;
  61. -webkit-border-radius: 30px;
  62. -moz-border-radius: 30px;
  63. border-radius: 30px;
  64. }
  65. /* preloading images */
  66. .owl-item.loading{
  67. min-height: 150px;
  68. background: url(AjaxLoader.gif) no-repeat center center
  69. }