first commit

This commit is contained in:
2025-02-24 22:33:42 +01:00
commit 737c037e85
18358 changed files with 5392983 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
.eael-image-scroller {
position: relative;
overflow: auto;
line-height: 0 img;
line-height-margin: 0;
line-height-padding: 0;
line-height-border: 0;
line-height-border-radius: 0;
}
.eael-image-scroller.eael-image-scroller-horizontal img {
width: inherit;
max-width: unset;
max-height: 100%;
}
.eael-image-scroller.eael-image-scroller-vertical img {
width: 100%;
max-width: 100%;
height: auto;
}
.eael-image-scroller.eael-image-scroller-hover {
cursor: all-scroll;
overflow: hidden;
}
.eael-image-scroller.eael-image-scroller-hover img {
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 1s;
transition-duration: 1s;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
-webkit-transition-delay: 0s;
transition-delay: 0s;
}