1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
MEDIA QUERIES
-----------------------------------------------------------------*/
/* iPad Mini in landscape only */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
body { overflow:hidden; }
article {
width:1024px;
height:768px;
position:absolute;
overflow:hidden;
}
article#home { background:url(images/logo.png) center center no-repeat; }
article#english { display:none; height:768px; width:1024px; position:absolute; overflow:hidden; }
.category { display:block; width:333px; float:left; padding:4px; filter: none; -webkit-filter: grayscale(0); position:relative; text-decoration:none; }
.category a { display:block; width:333px; outline:none; }
.category img { width:333px; border:none; }
.category span { display:block; position:absolute; bottom:4px; left:4px; background: rgba(0, 0, 0, 0.8); color:#FFFFFF; font-size:1em; font-family:Helvetica, Arial, sans-serif; width:333px; height:30px; line-height:30px; text-transform:uppercase; text-align:center; }
} |
Partager