379 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
			
		
		
	
	
			379 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
| #orbit_gallery {
 | |
| 	margin: 0;
 | |
| 	padding: 0 0 10px;
 | |
| 	list-style: none;
 | |
| }
 | |
| #orbit_gallery .rgalbum {
 | |
| 	margin: 5px;
 | |
| 	padding: 10px;
 | |
| 	width: 200px;
 | |
| 	background: #FFFFFF;
 | |
| 	-webkit-transition-property: left, right, top;
 | |
| 	   -moz-transition-property: left, right, top;
 | |
| 		-ms-transition-property: left, right, top;
 | |
| 		 -o-transition-property: left, right, top;
 | |
| 			transition-property: left, right, top;
 | |
| }
 | |
| #orbit_gallery .rgalbum:hover {
 | |
| 	box-shadow: 0px 0px 5px rgba(0,0,0,.2);
 | |
| }
 | |
| #orbit_gallery .rgalbum a {
 | |
| 	position: relative;
 | |
| 	display: block;
 | |
| 	overflow: hidden;
 | |
| 	margin: 0 0 10px;
 | |
| 	width: 200px;
 | |
| 	-webkit-transition: all .2s linear;
 | |
| 	   -moz-transition: all .2s linear;
 | |
| 		 -o-transition: all .2s linear;
 | |
| 			transition: all .2s linear;
 | |
| }
 | |
| #orbit_gallery .rgalbum a img {
 | |
| 	max-width: none;
 | |
| }
 | |
| #orbit_gallery .rgalbum:hover a img {
 | |
| 	-webkit-filter: blur(2px);
 | |
| }
 | |
| #orbit_gallery .rgalbum a span {
 | |
| 	position: absolute;
 | |
| 	top: 0;
 | |
| 	right: 0;
 | |
| 	bottom: 0;
 | |
| 	left: 0;
 | |
| 	display: block;
 | |
| 	margin: 0;
 | |
| 	background-color: #000000;
 | |
| 	opacity: .0;
 | |
| 	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 | |
| 	filter: alpha(opacity=0);
 | |
| 	-webkit-transition: all .2s linear;
 | |
| 	   -moz-transition: all .2s linear;
 | |
| 		 -o-transition: all .2s linear;
 | |
| 			transition: all .2s linear;
 | |
| }
 | |
| #orbit_gallery .rgalbum:hover a span {
 | |
| 	opacity: .4;
 | |
| 	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
 | |
| 	filter: alpha(opacity=40);
 | |
| }
 | |
| #orbit_gallery .rgalbum a .albumname {
 | |
| 	position: absolute;
 | |
| 	bottom: 0;
 | |
| 	margin: 0;
 | |
| 	padding: 10px;
 | |
| 	color: #F2F2F2;
 | |
| 	text-shadow: 0px -1px 0 rgba(0,0,0,0.4);
 | |
| 	letter-spacing: -0.5px;
 | |
| 	font-size: 30px;
 | |
| 	font-family: 'Playfair Display SC', sans-serif;
 | |
| 	line-height: 28px;
 | |
| 	opacity: .0;
 | |
| 	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 | |
| 	filter: alpha(opacity=0);
 | |
| 	-webkit-transition: all .2s linear;
 | |
| 	   -moz-transition: all .2s linear;
 | |
| 		 -o-transition: all .2s linear;
 | |
| 			transition: all .2s linear;
 | |
| }
 | |
| #orbit_gallery .rgalbum:hover a .albumname {
 | |
| 	opacity: 1;
 | |
| 	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 | |
| 	filter: alpha(opacity=100);
 | |
| 	-webkit-transition: all .2s linear;
 | |
| 	   -moz-transition: all .2s linear;
 | |
| 		 -o-transition: all .2s linear;
 | |
| 			transition: all .2s linear;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info {
 | |
| 	margin: 0;
 | |
| 	list-style: none;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info li {
 | |
| 	display: inline-block;
 | |
| 	float: left;
 | |
| 	color: #777777;
 | |
| 	font-size: 11px;
 | |
| 	line-height: 20px;
 | |
| 	cursor: pointer;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info li:hover {
 | |
| 	color: #0088CC;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info li .icons-tag {
 | |
| 	margin-left: 10px;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info li.albumcateg {
 | |
| 	float: right;
 | |
| 	overflow: hidden;
 | |
| 	max-width: 125px;
 | |
| 	text-align: right;
 | |
| 	text-overflow: ellipsis;
 | |
| 	white-space: nowrap;
 | |
| }
 | |
| #orbit_gallery .rgalbum .gallery_info li.view {
 | |
| 	overflow: hidden;
 | |
| 	max-width: 50px;
 | |
| 	text-overflow: ellipsis;
 | |
| 	white-space: nowrap;
 | |
| }
 | |
| #orbit_gallery .rgalbum .albumtag {
 | |
| 	display: none;
 | |
| 	overflow: hidden;
 | |
| 	margin: 0;
 | |
| }
 | |
| 
 | |
| 
 | |
| /* Gallery Body */
 | |
| .rgbody .gallery-info {
 | |
| 	padding: 0 5px;
 | |
| }
 | |
| .rgbody .gallery-info h3 {
 | |
| 	margin: 5px 0 0;
 | |
| 	color: #333;
 | |
| 	text-shadow: 0 1px 0 #ffffff;
 | |
| 	font-family: 'Playfair Display SC', sans-serif;
 | |
| }
 | |
| .rgbody .gallery-info .muted {
 | |
| 	font-family: 'Raleway', sans-serif;
 | |
| }
 | |
| 
 | |
| #imgholder {
 | |
| 	margin: 0;
 | |
| 	padding: 0 0 10px;
 | |
| 	list-style: none;
 | |
| }
 | |
| #imgholder .rgalbum {
 | |
| 	float: left;
 | |
| 	margin: 5px;
 | |
| 	padding: 5px;
 | |
| 	width: 200px;
 | |
| 	background: #FFFFFF;
 | |
| 	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
 | |
| 	   -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
 | |
| 			box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
 | |
| 	-webkit-transition-property: left, right, top;
 | |
| 	   -moz-transition-property: left, right, top;
 | |
| 		-ms-transition-property: left, right, top;
 | |
| 		 -o-transition-property: left, right, top;
 | |
| 			transition-property: left, right, top;
 | |
| 		 -o-box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
 | |
| }
 | |
| #imgholder .rgalbum a {
 | |
| 	display: block;
 | |
| 	overflow: hidden;
 | |
| 	margin: 0;
 | |
| 	width: 200px;
 | |
| 	-webkit-transition: all .2s linear;
 | |
| 	   -moz-transition: all .2s linear;
 | |
| 		 -o-transition: all .2s linear;
 | |
| 			transition: all .2s linear;
 | |
| }
 | |
| #imgholder .rgalbum a img {
 | |
| 	max-width: none;
 | |
| }
 | |
| 
 | |
| 
 | |
| /* File Upload */
 | |
| #upload-panel {
 | |
| 	clear: both;
 | |
| }
 | |
| #upload-panel iframe {
 | |
| 	width: 100%;
 | |
| 	border: none;
 | |
| }
 | |
| #fileupload {
 | |
| 	position: relative;
 | |
| 	display: none;
 | |
| 	clear: both;
 | |
| 	overflow: hidden;
 | |
| 	margin: 40px 0 15px;
 | |
| 	height: 254px;
 | |
| 	border: 1px solid #d4d4d4;
 | |
| 	border-radius: 4px;
 | |
| 	background-color: #FDFDFD;
 | |
| 	/*-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .15) inset;
 | |
| 			box-shadow: 0px 0px 10px rgba(0, 0, 0, .15) inset;*/
 | |
| }
 | |
| #fileupload table {
 | |
| 	margin: 0;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar {
 | |
| 	margin-bottom: 0;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar button {
 | |
| 	border: none;
 | |
| 	border-right: 1px solid #d4d4d4;
 | |
| 	background-color: transparent;
 | |
| 	padding: 10px 15px 10px;
 | |
| 	color: #777777;
 | |
| 	text-decoration: none;
 | |
| 	text-shadow: 0 1px 0 #ffffff;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar button:hover {
 | |
| 	color: #333333;
 | |
| 	text-decoration: none;
 | |
| 	background-color: #EDEDED;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar .fileinput-button {
 | |
| 	position: relative;
 | |
| 	overflow: hidden;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar .fileinput-button input {
 | |
| 	position: absolute;
 | |
| 	top: 0;
 | |
| 	right: 0;
 | |
| 	margin: 0;
 | |
| 	font-size: 23px;
 | |
| 	opacity: 0;
 | |
| 	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 | |
| 	filter: alpha(opacity=0);
 | |
| 	cursor: pointer;
 | |
| 	-webkit-transform: translate(-300px, 0) scale(4);
 | |
| 	   -moz-transform: translate(-300px, 0) scale(4);
 | |
| 		-ms-transform: translate(-300px, 0) scale(4);
 | |
| 		 -o-transform: translate(-300px, 0) scale(4);
 | |
| 			transform: translate(-300px, 0) scale(4);
 | |
| 	direction: ltr;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar .navbar-inner {
 | |
| 	border-width: 0 0 1px;
 | |
| 	border-radius: 4px 4px 0 0;
 | |
| 	padding: 0;
 | |
| }
 | |
| 
 | |
| #fileupload .fileupload-progress .progress {
 | |
| 	position: absolute;
 | |
| 	right: 0;
 | |
| 	left: 0;
 | |
| 	margin-bottom: 0;
 | |
| 	height: 5px;
 | |
| 	border-radius: 0;
 | |
| 	background-color: transparent;
 | |
| 	background-image: none;
 | |
| }
 | |
| #fileupload .fileupload-progress .progress-success.progress-striped .bar {
 | |
| 	background-color: #0088CC;
 | |
| }
 | |
| #fileupload .fileupload-progress .progress-extended {
 | |
| 	position: absolute;
 | |
| 	top: 1px;
 | |
| 	right: 0;
 | |
| 	padding-right: 15px;
 | |
| 	color: #0088CC;
 | |
| 	text-align: right;
 | |
| 	text-shadow: 0 1px 0 #ffffff;
 | |
| 	letter-spacing: -0.1em;
 | |
| 	font-size: 12px;
 | |
| 	font-family: 'Varela Round', sans-serif;
 | |
| 	line-height: 40px;
 | |
| }
 | |
| #fileupload .fileupload-buttonbar {
 | |
| 	position: relative;
 | |
| 	z-index: 3;
 | |
| }
 | |
| #fileupload #dropzone {
 | |
| 	margin: 15px 10px 10px;
 | |
| 	padding: 30px;
 | |
| 	text-align: center;
 | |
| 	font-size: 2em;
 | |
| 	font-family: 'Raleway';
 | |
| 	line-height: 1.2em;
 | |
| 	color: #e4e4e4;
 | |
| }
 | |
| #fileupload #dropzone div[data-icons] {
 | |
| 	font-size: 4em;
 | |
| 	height: 70px;
 | |
| 	padding-top: 30px;
 | |
| 	text-shadow: 0px -1px 0px #ececec;
 | |
| 	color: #f5f5f5;
 | |
| }
 | |
| #fileupload #dropzone.drop {
 | |
| 	position: absolute;
 | |
| 	top: 37px;
 | |
| 	left: 0;
 | |
| 	right: 0;
 | |
| 	bottom: 0;
 | |
| 	border: 2px dashed #0088CC;
 | |
| 	border-radius: 10px;
 | |
| 	color: #0088CC;
 | |
| 	background-color: #FFFFFF;
 | |
| 	z-index: 0;
 | |
| }
 | |
| #fileupload #dropzone.fade {
 | |
| 	opacity: .3;
 | |
| }
 | |
| #fileupload #dropzone.in {
 | |
| 	opacity: .7;
 | |
| 	z-index: 2;
 | |
| 	border-color: #faa732;
 | |
| 	color: #faa732;
 | |
| }
 | |
| #fileupload #dropzone.drop div[data-icons] {
 | |
| 	text-shadow: 0px -1px 0px #0c5f80;
 | |
| 	color: #0088CC;
 | |
| }
 | |
| #fileupload #dropzone.in div[data-icons] {
 | |
| 	text-shadow: 0px -1px 0px #a28a10;
 | |
| 	color: #faa732;
 | |
| }
 | |
| #fileupload #file-list {
 | |
| 	position: relative;
 | |
| 	z-index: 1;
 | |
| 	height: 209px;
 | |
| 	margin: 2px 0;
 | |
| }
 | |
| #fileupload #file-list .pane {
 | |
| 	margin-right: 2px;
 | |
| }
 | |
| #fileupload #file-list .files {
 | |
| 	margin: 0;
 | |
| 	padding: 10px 14px 10px 10px;
 | |
| 	list-style: none;
 | |
| }
 | |
| #fileupload #file-list .files > li {
 | |
| 	padding: 10px;
 | |
| }
 | |
| #fileupload #file-list .files > li:nth-child(even) {
 | |
| 	background-color: #e9e9e9;
 | |
| 	border-radius: 3px;
 | |
| }
 | |
| #fileupload #file-list .files ul {
 | |
| 	position: relative;
 | |
| 	margin: 0;
 | |
| 	padding: 0;
 | |
| 	list-style: none;
 | |
| }
 | |
| #fileupload #file-list .files ul li {
 | |
| 	float: left;
 | |
| }
 | |
| #fileupload #file-list .files ul li.action-bnt {
 | |
| 	float: right;
 | |
| }
 | |
| #fileupload #file-list .preview {
 | |
| 	width: 80px;
 | |
| 	min-height: 1px;
 | |
| 	margin-right: 10px;
 | |
| 	text-align: center;
 | |
| }
 | |
| #fileupload #file-list .name {
 | |
| 	width: 150px;
 | |
| 	max-width: 250px;
 | |
| 	margin-left: 15px;
 | |
| }
 | |
| #fileupload #file-list .progress {
 | |
| 	position: absolute;
 | |
| 	left: -5px;
 | |
| 	right: -5px;
 | |
| 	bottom: -5px;
 | |
| 	margin-bottom: 0;
 | |
| 	height: 5px;
 | |
| 	box-shadow: none;
 | |
| 	background-color: transparent;
 | |
| 	background-image: none;
 | |
| }
 | |
| #fileupload #file-list .size {
 | |
| 	width: 80px;
 | |
| }
 | |
| #fileupload #file-list .action-bnt {
 | |
| 	text-align: right;
 | |
| } |