Blame view

css/component.css 1.92 KB
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  .cbp-bislideshow {
  	list-style: none;
  	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: -1;
  	padding: 0;
  	margin: 0;
  }
  
  .cbp-bislideshow li {
  	position: absolute;
  	width: 101%;
  	height: 101%;
  	top: -0.5%;
  	left: -0.5%;
  	opacity: 0;
  	-webkit-transition: opacity 1s;
  	-moz-transition: opacity 1s;
  	transition: opacity 1s;
  }
  
  /* If background-size supported we'll add the images to the background of the li */
  
  .backgroundsize .cbp-bislideshow li {
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	background-size: cover;
  	background-position: center center;
  }
  
  /* ...and hide the images */
  .backgroundsize .cbp-bislideshow li img {
  	display: none;
  }
  
  .cbp-bislideshow li img {
  	display: block;
  	width: 100%;
  }
  
  .cbp-bicontrols {
  	position: fixed;z-index:998;
  	width: 90%;
  	height: 100px;
  	margin: -50px 0 0 -45%;
  	top: 50%;
  	left: 50%;
  }
  
  .cbp-bicontrols span {
  	float: left;
  	width: 100px;
  	height: 100px;
  	position: relative;
  	cursor: pointer;
  }
  
  .cbp-bicontrols span:before {
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
  	text-align: center;
  	font-family: 'entypo';
  	speak: none;
  	font-style: normal;
  	font-weight: normal;
  	font-variant: normal;
  	text-transform: none;
  	line-height: 100px;
  	font-size: 80px;
  	color: #fff;
  	-webkit-font-smoothing: antialiased;
  	opacity: 0.7;
  }
  
  .cbp-bicontrols span:hover:before {
  	opacity: 1;
  }
  
  .cbp-bicontrols span:active:before {
  	top: 2px;
  }
  
  span.cbp-biplay:before {
  	content: "\e002";
  }
  
  span.cbp-bipause:before {
  	content: "\e003";
  }
  
  span.cbp-binext {
  	display:block;
  	width:66px;
  	height:66px;
  	background:url("../img/next.png");
  }
  
  span.cbp-biprev {
  	display:block;
  	width:66px;
  	height:66px;
  	background:url("../img/prev.png");
  }
  
  .cbp-bicontrols span.cbp-binext {
  	float: right;
  }
  
  /* Fallback */
  
  .no-js.no-backgroundsize .cbp-bislideshow li:first-child {
  	opacity: 1;
  }
  
  .no-js.backgroundsize .cbp-bislideshow li:first-child img {
  	display: block;
  }