Blame view

frontend/web/css/owl.theme.css 1.41 KB
ae432de6   Alexey Boroda   first commit
1
2
3
4
5
  /*
  * 	Owl Carousel Owl Demo Theme 
  *	v1.3.2
  */
  
9870b2b4   Alexey Boroda   -In process
6
7
8
  .owl-theme .owl-controls{
  	margin-top: 10px;
  	text-align: center;
ae432de6   Alexey Boroda   first commit
9
10
11
12
  }
  
  /* Styling Next and Prev buttons */
  
9870b2b4   Alexey Boroda   -In process
13
14
15
16
  .owl-theme .owl-controls .owl-buttons div{
  	display: inline-block;
  	zoom: 1;
  	*display: inline;/*IE7 life-saver */
ae432de6   Alexey Boroda   first commit
17
  }
ae432de6   Alexey Boroda   first commit
18
19
  /* Clickable class fix problem with hover on touch devices */
  /* Use it for non-touch hover action */
9870b2b4   Alexey Boroda   -In process
20
21
22
23
  .owl-theme .owl-controls.clickable .owl-buttons div:hover{
  	filter: Alpha(Opacity=100);/*IE7 fix*/
  	opacity: 1;
  	text-decoration: none;
ae432de6   Alexey Boroda   first commit
24
25
26
27
  }
  
  /* Styling Pagination*/
  
9870b2b4   Alexey Boroda   -In process
28
29
30
31
  .owl-theme .owl-controls .owl-page{
  	display: inline-block;
  	zoom: 1;
  	*display: inline;/*IE7 life-saver */
ae432de6   Alexey Boroda   first commit
32
  }
9870b2b4   Alexey Boroda   -In process
33
34
35
36
37
38
39
40
41
42
43
  .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;
ae432de6   Alexey Boroda   first commit
44
45
46
  }
  
  .owl-theme .owl-controls .owl-page.active span,
9870b2b4   Alexey Boroda   -In process
47
48
49
  .owl-theme .owl-controls.clickable .owl-page:hover span{
  	filter: Alpha(Opacity=100);/*IE7 fix*/
  	opacity: 1;
ae432de6   Alexey Boroda   first commit
50
51
52
53
  }
  
  /* If PaginationNumbers is true */
  
9870b2b4   Alexey Boroda   -In process
54
55
56
57
58
59
60
61
62
  .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;
ae432de6   Alexey Boroda   first commit
63
64
65
  }
  
  /* preloading images */
9870b2b4   Alexey Boroda   -In process
66
67
68
  .owl-item.loading{
  	min-height: 150px;
  	background: url(AjaxLoader.gif) no-repeat center center
ae432de6   Alexey Boroda   first commit
69
  }