15 lines
201 B
CSS
15 lines
201 B
CSS
|
@media handheld, only screen and (max-height: 640px) {
|
||
|
#photo-view {
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
.photo-view-container {
|
||
|
display: none;
|
||
|
}
|
||
|
#title {
|
||
|
font-size: 1em;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
}
|