v1.4
Incorporate Auto WB button, improve page layout on small screens
This commit is contained in:
parent
9c0a8765ce
commit
43fc71c0ca
2 changed files with 14 additions and 4 deletions
|
|
@ -336,7 +336,7 @@
|
|||
<!-- Footer Div -->
|
||||
<div class="flexContainerH" id="footerContainer">
|
||||
<div id="footerLeft">
|
||||
<span class="">(v 1.3)</span>
|
||||
<span class="">(v 1.4)</span>
|
||||
<span id="activeElementSpan"></span>
|
||||
</div>
|
||||
<div id="footerLinks">
|
||||
|
|
|
|||
16
style.css
16
style.css
|
|
@ -3,17 +3,27 @@
|
|||
/* ============= WHOLE PAGE STYLES ================== */
|
||||
|
||||
/* Handle vertical screens */
|
||||
@media screen and (max-width: 1200px) {
|
||||
@media screen and (max-width: 1400px) and (orientation: portrait) {
|
||||
#cameraControlsContainer {
|
||||
width: 100vw!important;
|
||||
}
|
||||
|
||||
#cameraControlsContainerExpanded {
|
||||
display: none;
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 90%;
|
||||
font-size: 125%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1400px) and (orientation: landscape) {
|
||||
#cameraControlsContainer {
|
||||
width: 30vw!important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 70%;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue