image-gallery.scss
1.06 KB
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
.image-gallery {
text-align: center;
}
.image-gallery ul {
padding: 0px;
text-align: center;
margin: auto;
}
.image-gallery-item {
width: 142px;
height: 170px;
list-style: none;
overflow: hidden;
background-repeat: no-repeat;
}
.image-gallery-item span {
text-align: center;
font-size: 11px;
}
.image-gallery-item span a {
text-decoration: none;
color: #000
}
.image-gallery-item img {
padding: 2px;
}
.image-gallery-item a {
width: 130px;
height: 130px;
}
.image-gallery-item a {
display: block;
color: #DB8;
background-repeat: no-repeat;
background-position: 50% 50%;
margin: auto;
}
.image-gallery-item a span {
display: none;
}
.image-gallery-item a:hover {
background-color: #EEE;
}
.image-gallery-item .uploaded-file {
background: transparent url('../images/icons-mime/empty.png') no-repeat 50% 43%;
}
#content #article .image-gallery .pagination .previous_page {
position: relative;
left: auto;
right: auto;
}
#content #article .image-gallery .pagination .next_page {
position: relative;
right: auto;
left: auto;
}