You are here

owl.theme.css in Multipurpose Corporate Profile 8

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

File

modules/contrib/owl/lib/owl-carousel/owl.theme.css
View source
  1. /*
  2. * Owl Carousel Owl Demo Theme
  3. * v1.3.3
  4. */
  5. .owl-theme .owl-controls{
  6. margin-top: 10px;
  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: 12px;
  41. height: 12px;
  42. margin: 5px 7px;
  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: #869791;
  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. }
  55. /* If PaginationNumbers is true */
  56. .owl-theme .owl-controls .owl-page span.owl-numbers{
  57. height: auto;
  58. width: auto;
  59. color: #FFF;
  60. padding: 2px 10px;
  61. font-size: 12px;
  62. -webkit-border-radius: 30px;
  63. -moz-border-radius: 30px;
  64. border-radius: 30px;
  65. }
  66. /* preloading images */
  67. .owl-item.loading{
  68. min-height: 150px;
  69. background: url(AjaxLoader.gif) no-repeat center center
  70. }