38 lines
717 B
CSS
Executable File
38 lines
717 B
CSS
Executable File
/**
|
|
* All of the CSS for your public-facing functionality should be
|
|
* included in this file.
|
|
*/
|
|
/**
|
|
* Environment for all styles (variables, additions, etc).
|
|
*/
|
|
/*--------------------------------------------------------------*/
|
|
/*--------------------------------------------------------------*/
|
|
.gallery-type-slider.gallery {
|
|
display: block;
|
|
}
|
|
|
|
.gallery-type-slider .gallery-item {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.gallery-type-slider .wp-caption-text {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.gallery-type-slider figure {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.gallery-type-slider img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.gallery-type-slider > .gallery-item:not(:first-child) {
|
|
position: fixed;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
}
|