xref: /template/writr/css/plugins/gallery.less (revision d5f7c5121deed0b231b81663b21212f7e14cba07)
1/* =Gallery Plugin
2----------------------------------------------- */
3
4div.plugin-gallery {
5    div.gallery-page {
6        gap: 25px;
7        width: 100%;
8
9        figure {
10            border-radius: 20px;
11            padding: 0px;
12            background: @ini_border;
13            width: 160px;
14            height: 160px;
15
16            a {
17                width: 160px;
18                height: 160px;
19                transition: inherit;
20
21                img {
22                    width: 160px;
23                    height: 160px;
24                    object-fit: contain;
25                    transition: inherit;
26                }
27            }
28        }
29    }
30}
31