jquery-simple-carousel-gallery
Version:
A very simple image / video gallery with a carousel of thumbnails.
39 lines (32 loc) • 498 B
CSS
#SCGTemplate {
display: none;
}
#gallery {
max-width: 800px;
margin: 1em;
}
.mediaContainer {
height: 60vh;
}
.media img {
max-width: 100%;
}
ul.carousel {
padding: 0px;
margin: 0px;
width: 100%;
overflow: hidden;
white-space: nowrap;
}
.goToPrevious.disabled, .goToNext.disabled {
display: none;
}
ul.carousel li {
padding: 0px;
margin: 0.25em 0.5em;
list-style: none;
display: inline-block;
}
ul.carousel li.active {
border: 3px solid red;
}