mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
Merge pull request #15 from sschneid/css_media_queries
@media queries make the world go 'round
This commit is contained in:
commit
6a3acd5def
1 changed files with 20 additions and 0 deletions
|
|
@ -12,6 +12,26 @@
|
||||||
|
|
||||||
<!-- stats-vmpooler-running -->
|
<!-- stats-vmpooler-running -->
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@media (min-width: 768px) and (orientation: portrait) {
|
||||||
|
#stats-vmpooler-running {
|
||||||
|
width: 880px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1280px) and (orientation: landscape) {
|
||||||
|
#stats-vmpooler-running {
|
||||||
|
width: 1180px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1920px) and (orientation: landscape) {
|
||||||
|
#stats-vmpooler-running {
|
||||||
|
width: 1780px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div class='label'>VMs running tests</div>
|
<div class='label'>VMs running tests</div>
|
||||||
|
|
||||||
<div id='stats-vmpooler-running' class='module'>
|
<div id='stats-vmpooler-running' class='module'>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue