<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Combined style sheet for the index pages and the slide pages, with classes that are common to both styles
 */

* {
	box-sizing: border-box;
}
body {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
	font-size: 16px;
	text-align: center;
}
.jalbumWidgetbar body {
	margin-bottom: 20px;
}
a {
	outline: 0;
}
a:link, a:visited, a:active {
	text-decoration: none
}
a:hover {
	text-decoration: underline;
}
img {
	border: none;
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.noborder {
	border: none;
}

/************** Page title */
#albumtitle,
#foldertitle {
	font-size: 1.75rem;
	margin: 30px 30px 15px;
}
#albumdescription,
#foldercomment {
	font-size: 1rem;
	max-width: 720px;
	margin: 0px 15px 10px;
}

/************** Navigation */
#nav {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	padding: 0 5px;
	overflow: hidden;
}
#nav &gt; .btn img {
	height:  32px;
	width:  32px;
	margin: 10px;
}

/************** Thumbnails */
#thumbnails {
	display: flex;
	flex-flow: row wrap;
	flex: 1;
	max-width: 720px;
	justify-content: center;
	align-content: flex-start;
	align-items: stretch;
}
#thumbnails &gt; div {
	display: flex;
	flex-direction: column;
	width: 130px;
	margin: 7px;
}
#thumbnails &gt; div &gt; a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
	position: relative;
	padding: 2px;
}
#thumbnails.has-images &gt; .folder &gt; a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40%;
	content: '';
	background: url("folder.svg") center center no-repeat;
	background-size: contain;
}
#thumbnails &gt; div img {
	display: block;
}
#thumbnails &gt; div &gt; div {
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 0.75rem;
	padding: 8px;
}

/************** Slide page */
#slide-page.responsive {
	height: 100vh;
}
.jalbumWidgetbar #slide-page {
	height: calc(100vh - 20px);
}
#slide-page.non-responsive header {
	margin-bottom: 15px;
}
#slide-page.responsive header {
	position: fixed;
	z-index: 99;
}
#slide-page.responsive header,
#slide-page.responsive footer {
	transition: background-color 500ms ease;
}

/************** Thumbnail navigation */
#thumbnav {
	display: flex;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
}
#thumbnav &gt; * {
	display: flex;
	flex-direction: column;
    justify-content: center;
	flex: none;
	margin: 8px 3px;
}
#thumbnav img {
	padding: 2px;
}
#thumbcurrent {
	position: relative;
}
#thumbcurrent::after {
	content: '';
	position: absolute;
	border: 6px solid transparent;
	top: 100%;
	left: 50%;
	margin-left: -6px;
	margin-top: -5px;
}

/************** Main image */
#slideimage {
	position: relative;
	margin: 0;
	padding: 15px;
}
.non-responsive #slideimage {
	padding: 2px;	
}
.responsive #slideimage {
	display: flex;
	overflow: hidden;
	min-height: 60vh;
	flex: 1;
}
.responsive #slideimage img {
	display: inline-block;
	vertical-align: middle;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#slideimage video {
	outline: 0;
	max-width: 100%;
	align-self: center;
}

/************** Prev / Next */
#slide-prev {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
}
#slide-prev:hover {
	background: url("prev-img.svg") no-repeat left 40px center;
}
#slide-next {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
}
#slide-next:hover {
	background: url("next-img.svg") no-repeat right 40px center;
}

/************** Footer */
#slide-page.responsive footer {
	position: fixed;
	bottom: 0;
	z-index: 99;
}
#caption {
	padding: 10px;
}
#imagetitle {
	font-size: 1.125rem;
	margin: 5px;
}
#slidecomment {
	font-size: 0.875rem;
	padding: 10px 15px;
}
#creditlink {
	opacity: 0.5;
	font-size: 0.75rem;
	padding: 10px 15px;
}
/*
 * Combined style sheet for the index pages and the slide pages, with only classes that are different for this style
 */

body {
	color: #dddddd;
	background-color: #111111;
	scrollbar-color: dark;
}
body::-webkit-scrollbar {
	width: .8rem;
}
body::-webkit-scrollbar-track {
	background-color: rgba(0,0,0,.25);
}
body::-webkit-scrollbar-thumb {
	border: 1px solid rgba(0,0,0,.5);
	background-color: rgba(255,255,255,.15);
}
a {
	color: #ffffff;
}
a:hover {
	color: red;
}
#thumbnails &gt; div {
	border: 1px solid #dddddd;
}

.non-responsive #slideimage {
	border: 1px solid #dddddd;
}
#thumbnav img {
	border: 1px solid #dddddd;
}
#thumbcurrent::after {
	border-bottom-color: #dddddd;
}
#slide-page.responsive &gt; header,
#slide-page.responsive &gt; footer {
	background-color: rgba(0,0,0,.5);
}
#slide-page.responsive &gt; header:hover,
#slide-page.responsive &gt; footer:hover {
	background-color: rgba(0,0,0,.85);
}
</pre></body></html>