-
Notifications
You must be signed in to change notification settings - Fork 20
/
afg.css
93 lines (81 loc) · 1.64 KB
/
afg.css
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
/* Settings that apply to entire gallery */
div.afg-gallery {
margin:auto;
}
/* Effect for thumbnails in gallery */
img.afg-img {
margin-top:5%;
opacity:1;
filter:alpha(opacity=100);
box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.6);
-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
}
img.afg-img:hover {
margin-top:5%;
opacity:0.7;
filter:alpha(opacity=70);
box-shadow: None;
-moz-box-shadow: None;
-webkit-box-shadow: None;
}
/* Gallery structure */
div.afg-table {
display:table !important;
margin:auto;
border:none;
}
/* Table row */
div.afg-row {
display:table-row !important;
}
/* Individual image cell in the gallery */
div.afg-cell {
display:table-cell !important;
text-align:left;
vertical-align:top;
margin:auto;
padding-bottom:10px;
}
/* Hover effect for pagination links */
a.afg-page:hover {
background:royalblue;
color:white;
text-decoration:none;
}
/* Pagination */
div.afg-pagination {
margin:auto;
border:0;
text-align:center;
font-size:0.9em;
}
font.afg-page {
border:1px solid gray;
}
font.afg-cur-page {
border:1px solid gray;
background-color:gray;
color:white;
}
/* Text decoration for pagination links */
a.afg-page:visited, a.afg-page:link {
text-decoration:none;
border:1px solid gray;
}
/* Credit Note */
div.afg-credit {
text-align:right;
font-size:0.9em;
}
/* Photo title */
div.afg-title {
margin-right:5%;
margin-bottom:5%;
}
/* Photo Description */
div.afg-description {
font-size:85%;
margin-right:5%;
font-style:italic;
}