PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.3.0
Gallery : FooGallery v3.3.0
3.3.2 3.3.3 3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / extensions / albums / css / album-default.css
foogallery / extensions / albums / css Last commit date
admin-foogallery-album.css 1 week ago album-default.css 1 week ago album-stack.css 1 week ago
album-default.css
147 lines
1 .foogallery-album-gallery-list {
2 list-style: none !important;
3 padding: 0 !important;
4 }
5
6 .foogallery-album-gallery-list li {
7 list-style-type: none !important;
8 display: inline-block;
9 }
10
11 .foogallery-album-gallery-list .foogallery-pile {
12 position: relative;
13 z-index: 10;
14 float: left;
15 margin: 10px 15px 15px 10px !important;
16 }
17
18 /* Stacks created by the use of generated content */
19 .foogallery-album-gallery-list .foogallery-pile:before,
20 .foogallery-album-gallery-list .foogallery-pile:after {
21 content: "";
22 width: 100%;
23 height: 100%;
24 position: absolute;
25 border: 8px solid #fff;
26 left: 0;
27 -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
28 -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
29 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
30 -webkit-box-sizing: border-box;
31 -moz-box-sizing: border-box;
32 box-sizing: border-box;
33 }
34 /* 1st element in stack (behind image) */
35 .foogallery-album-gallery-list .foogallery-pile:before {
36 top: -3px; z-index: -10;
37 -webkit-transform: rotate(2deg);
38 -moz-transform: rotate(2deg);
39 transform: rotate(2deg);
40 }
41 /* 2nd element in stack (behind image) */
42 .foogallery-album-gallery-list .foogallery-pile:after {
43 top: -2px; z-index: -20;
44 -webkit-transform: rotate(-2deg);
45 -moz-transform: rotate(-2deg);
46 transform: rotate(-2deg);
47 }
48
49 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner {
50 border: 8px solid #fff;
51 -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
52 -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
53 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
54 overflow: hidden;
55 line-height: 0;
56 }
57
58 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner > a {
59 display: inline-block;
60 }
61
62 .foogallery-album-gallery-list .foogallery-pile img {
63 }
64
65 .foogallery-album-gallery-list .foogallery-pile h3 {
66 background: #FFF;
67 position: absolute;
68 display: block;
69 bottom: 0px;
70 padding: 5px 5px 0 5px;
71 width: 100%;
72 box-sizing: border-box;
73 margin: 0;
74 opacity: 0.6;
75 line-height: 1em;
76 }
77
78 .foogallery-album-gallery-list .foogallery-pile h3 span {
79 display: block;
80 font-size: 0.6em;
81 }
82
83 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-caption {
84 background: #FFF;
85 position: absolute;
86 display: block;
87 bottom: 0;
88 padding: 5px 5px 0 5px;
89 width: 100%;
90 box-sizing: border-box;
91 margin: 0;
92 opacity: 0.8;
93 line-height: 1em;
94 }
95
96 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-caption h3 {
97 background: transparent;
98 position: static;
99 padding: 0;
100 width: auto;
101 opacity: 1;
102 }
103
104 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-title-link {
105 color: inherit;
106 text-decoration: none;
107 }
108
109 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-description {
110 display: block;
111 font-size: 0.75em;
112 line-height: 1.25;
113 margin-top: 0.4em;
114 max-height: 5em;
115 overflow: hidden;
116 }
117
118 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-description p {
119 margin: 0 0 0.4em;
120 }
121
122 .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-description p:last-child {
123 margin-bottom: 0.4em;
124 }
125
126 .foogallery-album-gallery-list .foogallery-pile a {
127 position: relative;
128 }
129
130 .foogallery-album-gallery-list.alignment-left {
131 text-align: left;
132 }
133
134 .foogallery-album-gallery-list.alignment-center {
135 text-align: center;
136 }
137
138 .foogallery-album-gallery-list.alignment-right {
139 text-align: right;
140 }
141
142 /* force no borders */
143 .foogallery-album-gallery-list .foogallery-pile a,
144 .foogallery-album-gallery-list .foogallery-pile a:hover {
145 border: none !important;
146 }
147