Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/* gallery page */
2
.gallery-item{
3
  padding-top: 15px;
4
  padding-bottom: 15px;
5
}
6
.gallery-item a {
7
  display: block;
8
  position: relative;
9
}
10
.gallery-item .zoomix {
11
  width: 100%;
12
  height: 100%;
13
  position: absolute;
14
  top: 0;
15
  left: 0;  
16
  -webkit-transition: all 0.3s ease-in-out;
17
  -moz-transition: all 0.3s ease-in-out;
18
  -o-transition: all 0.3s ease-in-out;
19
  -ms-transition: all 0.3s ease-in-out;
20
  transition: all 0.3s ease-in-out;
21
  z-index: 90;
22
  background: #000;
23
  opacity: 0;
24
  filter: alpha(opacity = 0);
25
 
26
  -webkit-transform: scale(0);
27
  -moz-transform: scale(0);
28
  -o-transform: scale(0);
29
  -ms-transform: scale(0);
30
  transform: scale(0);
31
 
32
  -webkit-backface-visibility: hidden;
33
}
34
.ie7 .gallery-item .zoomix{
35
  clear: both;
36
}
37
.gallery-item a:hover .zoomix{
38
  -webkit-transform: scale(1);
39
  -moz-transform: scale(1);
40
  -o-transform: scale(1);
41
  -ms-transform: scale(1);
42
  transform: scale(1);
43
  opacity:0.4;  
44
  filter: alpha(opacity = 50);
45
}
46
.gallery-item .zoomix .fa-search {
47
  font-size: 25px;
48
  line-height: 25px;
49
  color: #fff;
50
  position: absolute;
51
  top: 50%;
52
  left: 50%;
53
  margin: -12px 0 0 -12px;
54
}