File "css_theater.css"

Full path: /home/wwwitravel/public_html/soul/css_theater.css
File size: 0 KB (2.35 KB bytes)
MIME-type: text/plain
Charset: 8 bit

Download   Open   Edit   Advanced Editor   Back

/****************************************************************************************************************
// Job   : selectores con responsive web design implementado a travs de media queries 
// Brain : Cristian Fernandez O.
// Email : cristian.fernandez@factobyte.cl
//--------------------------------------------------------------------------------------------------------------*/

#contenidos-theater {
	width: 100%;
	height: 100%;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 10000000;
	display: none;
	background-color: rgba(0,0,0,0.93);

	background-image: url(imgs/img_preloader.gif);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center 180px; 
}

#contenidos-theater h3 {
	color: #fff;
	text-align: right;
	cursor: pointer;
}

#contenidos-theater-galeria {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 15px;
}

#contenidos-theater-galeria img {
	width: 100%;
}

#contenidos-theater-close {
	margin-top: 30px;
	margin-bottom: 15px;
}

#contenidos-theater-previous {
	margin-top: 15px;
	float: left;
}

#contenidos-theater-next {
	margin-top: 15px;
	float: right;
}

/****************************************************************************************************************
// Job   : selectores con responsive web design implementado a travs de media queries 
// Brain : Cristian Fernandez O.
// Email : cristian.fernandez@factobyte.cl
//--------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 1600px) {
	/* propiedades CSS a aplicar en desktops con resolucin de 1600px mnimo o mas */
	
}

@media screen and (min-width: 1025px) and (max-width: 1599px) {
	/* propiedades CSS a aplicar en notebooks y netbooks con resolucin de 1024px mnimo y 1599px mximo */
	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	/* propiedades CSS a aplicar en tablets con resolucin de 768px mnimo y 1023px mximo */

	#contenidos-theater-galeria {
		width: 94%;
		margin-bottom: 10px;
	}

}

@media screen and (max-width: 767px) {
	/* propiedades CSS a aplicar en smartphones con resolucin de 767px mximo */

	#contenidos-theater-galeria {
		width: 96%;
		margin-bottom: 0;
	}
	
	#contenidos-theater-close {
		margin-top: 15px;
	}

}