slight adjustments

This commit is contained in:
mcguirepr89
2022-03-25 11:28:44 -04:00
parent 5e01f649c2
commit 339233f73d
2 changed files with 28 additions and 1 deletions
+27
View File
@@ -181,6 +181,13 @@ button:hover {
vertical-align: middle; vertical-align: middle;
} }
.overview img {
display: block;
max-height: 100%;
margin-left: 25%;
margin-right: 10%;
}
.overview span { .overview span {
width: auto; width: auto;
margin-right: 20%; margin-right: 20%;
@@ -363,11 +370,25 @@ body::-webkit-scrollbar {
} }
@media screen and (max-width: 1290px) { @media screen and (max-width: 1290px) {
.overview img {
display: block;
max-height: 100%;
margin-left: auto;
margin-right: auto;
}
.column1,.column2,.column3,.column4 { .column1,.column2,.column3,.column4 {
height: 90% height: 90%
} }
} }
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {
.overview img {
display: block;
max-height: 100%;
margin-left: 25%;
margin-right: 10%;
}
.customlabels form,.customlabels2 form { .customlabels form,.customlabels2 form {
width: 95%; width: 95%;
} }
@@ -497,6 +518,12 @@ body::-webkit-scrollbar {
margin: 0; margin: 0;
width: 100%; width: 100%;
} }
.overview img {
display: block;
max-height: 100%;
margin-left: 25%;
margin-right: 10%;
}
.version {display:none;} .version {display:none;}
.left { .left {
display:none; display:none;
+1 -1
View File
@@ -104,7 +104,7 @@ $totalspeciestally = $result6->fetchArray(SQLITE3_ASSOC);
</div> </div>
<?php <?php
if (file_exists('/home/pi/BirdSongs/Extracted/Charts/'.$chart)) { if (file_exists('/home/pi/BirdSongs/Extracted/Charts/'.$chart)) {
echo "<img style=\"display:block;max-height:100%;margin-left:25%;margin-right:10%;\" src=\"/Charts/$chart?nocache=time()\">"; echo "<img src=\"/Charts/$chart?nocache=time()\">";
} else { } else {
echo "<p>No Detections For Today</p>"; echo "<p>No Detections For Today</p>";
} }