/* # ----------------------------------------------------------------------------- # ~/assets/themes/j1/modules/lightGallery/css/plugins/lg-thumbnail.css # Provides lightGallery styles for the plugin lgThumbnail # # Product/Info: # https://jekyll.one # # Copyright (C) 2023 Sachin Neravath # Copyright (C) 2023, 2024 Juergen Adams # # J1 Template is licensed under the MIT License. # See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md # lightGallery is licensed under the GPLv3 license # See: https://github.com/sachinchoolur/lightGallery/blob/master/LICENSE # ----------------------------------------------------------------------------- */ /*! * lightgallery | 2.7.2 | September 20th 2023 * http://www.lightgalleryjs.com/ * Copyright (c) 2020 Sachin Neravath; * @license GPLv3 */ .lg-outer .lg-thumb-outer { background-color: #0d0a0a; width: 100%; max-height: 350px; overflow: hidden; float: left; } .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item { cursor: -webkit-grab; cursor: -moz-grab; cursor: -o-grab; cursor: -ms-grab; cursor: grab; } .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item { cursor: move; cursor: -webkit-grabbing; cursor: -moz-grabbing; cursor: -o-grabbing; cursor: -ms-grabbing; cursor: grabbing; } .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb { -webkit-transition-duration: 0s !important; transition-duration: 0s !important; } .lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb { -webkit-transition-duration: 0s !important; transition-duration: 0s !important; } .lg-outer .lg-thumb-outer.lg-thumb-align-middle { text-align: center; } .lg-outer .lg-thumb-outer.lg-thumb-align-left { text-align: left; } .lg-outer .lg-thumb-outer.lg-thumb-align-right { text-align: right; } .lg-outer.lg-single-item .lg-thumb-outer { display: none; } .lg-outer .lg-thumb { padding: 5px 0; height: 100%; margin-bottom: -5px; display: inline-block; vertical-align: middle; } @media (min-width: 768px) { .lg-outer .lg-thumb { padding: 10px 0; } } .lg-outer .lg-thumb-item { cursor: pointer; float: left; overflow: hidden; height: 100%; border-radius: 2px; margin-bottom: 5px; will-change: border-color; } @media (min-width: 768px) { .lg-outer .lg-thumb-item { border-radius: 4px; border: 2px solid #fff; -webkit-transition: border-color 0.25s ease; -o-transition: border-color 0.25s ease; transition: border-color 0.25s ease; } } .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover { border-color: #a90707; } .lg-outer .lg-thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; } .lg-outer.lg-can-toggle .lg-item { padding-bottom: 0; } .lg-outer .lg-toggle-thumb:after { content: '\e1ff'; } .lg-outer.lg-animate-thumb .lg-thumb { -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }