folder.css
1.18 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
59
60
61
62
63
64
65
66
67
68
69
@import url(pagination.css);
.image-gallery {
text-align: center;
}
.image-gallery ul {
padding: 0px;
text-align: center;
}
.image-gallery-item {
width: 142px;
height: 170px;
list-style: none;
margin: 5px;
float: left;
overflow: hidden;
}
.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;
border: 1px solid;
}
.image-gallery-item .folder, .image-gallery-item .uploaded-file {
width: 120px;
height: 120px;
border: 1px solid;
}
.image-gallery-item .folder {
background: transparent url('../images/icons-app/gtk-folder.png') no-repeat 50% 43%;
display: block;
color: #DB8;
}
.image-gallery-item .folder:hover {
border: 4px solid;
width: 114px;
height: 114px;
background-color: #FF9
}
.image-gallery-item .uploaded-file {
background: transparent url('../images/icons-mime/empty.png') no-repeat 50% 43%;
}
#content #article .image-gallery .pagination .prev_page {
position: relative;
left: auto;
right: auto;
}
#content #article .image-gallery .pagination .next_page {
position: relative;
right: auto;
left: auto;
}