Blame view
sources/apps/gallery/css/mobile.css
371 Bytes
|
d1bafeea1
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
@media only screen and (max-width: 600px) {
/* make header and controls bar scroll up for more view of content on small screens */
#header,
#controls {
position: absolute !important;
}
/* smaller images for smaller screens, fit 2 to width */
#gallery > a > img,
#gallery > a,
#gallery > a.album,
#gallery > a.image > img {
max-height: 130px;
max-width: 130px;
}
}
|