Automatically refreshes the iFrame when the screen is rotated - this forces the layout to refresh to the correct one
30 lines
496 B
CSS
30 lines
496 B
CSS
#generalBody {
|
|
width: 800px;
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
#informationContentPanel {
|
|
margin: auto;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 15px;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
#informationContentPanel h3,h4,h5 {
|
|
text-align: center;
|
|
}
|
|
|
|
#dbManagementPanel {
|
|
gap: 2%;
|
|
}
|
|
|
|
|
|
@media only screen and (min-width: 360px) and (max-width: 1024px) {
|
|
#generalBody {
|
|
width: 300px;
|
|
}
|
|
|
|
} |