<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Ref: http://meandmax.github.io/lory/
 */
 
/**
 * (optional) define here the style definitions which should be applied on the slider container
 * e.g. width including further controls like arrows etc.
 */
.slider {
	
}

.slider &gt; .frame {
	/**
	 * (optional) wrapper width, specifies width of the slider frame.
	 */
	width: 880px;
	position: relative;
	line-height: 0;
	overflow: hidden;
	white-space: nowrap;
}

.slider &gt; .frame &gt; .slides {
	display: inline-block;
}

.slider &gt; .frame &gt; .slides &gt; li {
	position: relative;
	display: inline-block;
	list-style: none outside none;
	
	/**
	 * (optional) if the content inside the slide element has a defined size.
	 */
	width: 880px;
}

.slider &gt; .prev, .slider &gt; .next {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	display: block;
	cursor: pointer;
}

.slider &gt; .next {
	right: 0;
}

.slider &gt; .prev {
	left: 0;
}

.slider &gt; .next svg, .slider &gt; .prev svg {
	width: 25px;
}</pre></body></html>