PluginProbe
Sight – Professional Image Gallery and Portfolio / 1.1.5
Sight – Professional Image Gallery and Portfolio v1.1.5
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8
sight / render / css / sight-lightbox-rtl.css

sight-lightbox-rtl.css in Sight – Professional Image Gallery and Portfolio 1.1.5, at render/css/sight-lightbox-rtl.css

39 lines 935 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Environment for all styles (variables, additions, etc).
3 */
4 /* Icons */
5 /* Vars */
6 .sight-portfolio-area-lightbox {
7 --sight-zoom-icon-popup-color: white;
8 --sight-zoom-icon-popup-background: rgba(0, 0, 0, 0.6);
9 --sight-zoom-icon-popup-font-size: 16px;
10 }
11
12 /* Common Style */
13 .sight-portfolio-area-lightbox .sight-zoom-icon-popup {
14 display: flex;
15 align-items: center;
16 justify-content: center;
17 position: absolute;
18 top: 1rem;
19 left: 1rem;
20 width: 2rem;
21 height: 2rem;
22 line-height: 2rem;
23 text-align: center;
24 opacity: 0;
25 color: var(--sight-zoom-icon-popup-color);
26 background: var(--sight-zoom-icon-popup-background);
27 transition: all 0.2s ease;
28 }
29
30 .sight-portfolio-area-lightbox .sight-zoom-icon-popup:before {
31 font-family: 'sight-portfolio-icons';
32 font-size: var(--sight-zoom-icon-popup-font-size);
33 content: "\e912";
34 }
35
36 .sight-portfolio-area-lightbox .sight-image-popup:hover ~ .sight-zoom-icon-popup {
37 opacity: 1;
38 }
39