diff options
Diffstat (limited to 'static/input.css')
| -rw-r--r-- | static/input.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/static/input.css b/static/input.css index 8c0069b..9f834a6 100644 --- a/static/input.css +++ b/static/input.css @@ -283,6 +283,20 @@ body:has(.lg-container:not([class~="lg-inline"])) #sidebar { border: 0.3vmax outset var(--main-light-color); } +.custom-svg-marker { + background: transparent; + border: none; +} + +.custom-svg-marker svg { + filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3)); + transition: transform 0.2s; +} + +.custom-svg-marker:hover svg { + transform: scale(1.1); +} + .lg-backdrop { background-color: var(--background-light-color); opacity: 0.8 !important; @@ -327,6 +341,10 @@ body:has(.lg-container:not([class~="lg-inline"])) #sidebar { bottom: calc(10vmin + 5vmax) !important; } +.lg-outer[class~="lg-single-item"] .lg-content { + bottom: 5vmax !important; +} + .lg-thumb-item { width: 10vmin !important; height: 10vmin !important; |