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