styles.css 1.33 KB
button.share {
	display: none;
}

#gallery {
	overflow: auto;
	overflow-x: hidden;
	text-align: justify;
}

#gallery > a.album {
	width: 200px;
}

#gallery > a.album > img {
	width: 200px;
	height: 200px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

#gallery > a.album > label {
	color: white;
	text-shadow: 0 0 10px #000;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 18px;
	padding-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
}

#gallery > a {
	display: inline-block;
	height: 200px;
	margin: 1em;
	position: relative;
	vertical-align: top;
	*display: inline;
	zoom: 1;
}

#gallery > a.image >img {
	max-height: 200px;
}

#gallery > a.album,
#gallery > a.image{
	opacity: 1;
	transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	-ms-transition: opacity 500ms;
	-webkit-transition: opacity 500ms;
}
#gallery > a.album.loading,
#gallery > a.image.loading{
	opacity: 0;
}

#controls > .right {
	float: right;
}

#gallery>h2 {
	background: #f7f7f7;
	height: 2.8em;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
	font-weight: bold;
	padding: 0.5em;
	padding-left: 2em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#dropdown {
	top: 6.4em;
	position: fixed;
	right: 0;
	margin-right: 0;
	border-bottom-right-radius: 0;
}