X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/1124e4cffe9f74493ebe861baac4deb3ccc338b1..refs/tags/0.1.32:/code/static/style.css diff --git a/code/static/style.css b/code/static/style.css index ef294ad..7ead197 100644 --- a/code/static/style.css +++ b/code/static/style.css @@ -54,6 +54,13 @@ td.error { border: 1px solid red; } +.notice { + color: #FF0000; + padding: 0.25em; + border: 1px solid red; + font-size: 16pt; +} + /* Navigation bar. */ .navigation { padding: 0em 1em; @@ -74,11 +81,44 @@ td.error { font-weight: bold; } +/* Machine list power buttons */ +.power { + width: 32px; + height: 32px; + background-color: transparent; + background-position: 0 0; + margin: 0; + border: 0; + text-indent: 64px; + line-height: 128px; + cursor: pointer; +} +.power:hover { + background-position: 0 32px; +} +.power.on { + background-image: url(power_button_on.png); +} +.power.off { + background-image: url(power_button_off.png); +} + /* Striping applied (by JavaScript) to every other row in /list. */ tr.stripedrow { - background-color: #DDF; + background-color: #e8e8ff; +} + +#machinelist td, #machinelist th { + padding: 0.1em 0.5em; +} + +form { + display: inline; } -#machinelist tr > td:first-child { - padding-right: 1em; +/* styling for the results box */ +.result { + background-color: #e8e8ff; + border: 1px black solid; + padding: 1ex; }