mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 10:08:40 -05:00
Merge pull request #15 from sschneid/css_media_queries
@media queries make the world go 'round
This commit is contained in:
commit
cca15afe72
1 changed files with 20 additions and 0 deletions
|
|
@ -12,6 +12,26 @@
|
|||
|
||||
<!-- 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 id='stats-vmpooler-running' class='module'>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue