supervisor.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* =ORDER
  2. 1. display
  3. 2. float and position
  4. 3. width and height
  5. 4. Specific element properties
  6. 5. margin
  7. 6. border
  8. 7. padding
  9. 8. background
  10. 9. color
  11. 10. font related properties
  12. ----------------------------------------------- */
  13. /* =MAIN
  14. ----------------------------------------------- */
  15. body, td, input, select, textarea, a {
  16. font: 12px/1.5em arial, helvetica, verdana, sans-serif;
  17. color: #333;
  18. }
  19. html, body, form, fieldset, h1, h2, h3, h4, h5, h6,
  20. p, pre, blockquote, ul, ol, dl, address {
  21. margin: 0;
  22. padding: 0;
  23. }
  24. form label {
  25. cursor: pointer;
  26. }
  27. fieldset {
  28. border: none;
  29. }
  30. img, table {
  31. border-width: 0;
  32. }
  33. /* =COLORS
  34. ----------------------------------------------- */
  35. body {
  36. background-color: #FFFFF3;
  37. color: #333;
  38. }
  39. a:link,
  40. a:visited {
  41. color: #333;
  42. }
  43. a:hover {
  44. color: #000;
  45. }
  46. /* =FLOATS
  47. ----------------------------------------------- */
  48. .left {
  49. float: left;
  50. }
  51. .right {
  52. text-align: right;
  53. float: right;
  54. }
  55. /* clear float */
  56. .clr:after {
  57. content: ".";
  58. display: block;
  59. height: 0;
  60. clear: both;
  61. visibility: hidden;
  62. }
  63. .clr {display: inline-block;}
  64. /* Hides from IE-mac \*/
  65. * html .clr {height: 1%;}
  66. .clr {display: block;}
  67. /* End hide from IE-mac */
  68. /* =LAYOUT
  69. ----------------------------------------------- */
  70. html, body {
  71. height: 100%;
  72. }
  73. #wrapper {
  74. min-height: 100%;
  75. height: auto !important;
  76. height: 100%;
  77. width: 782px;
  78. margin: 0 auto -31px;
  79. }
  80. #footer,
  81. .push {
  82. height: 30px;
  83. }
  84. .hidden {
  85. display: none;
  86. }
  87. /* =STATUS
  88. ----------------------------------------------- */
  89. #header {
  90. margin-bottom: 13px;
  91. padding: 10px 0 13px 0;
  92. background: url("../images/rule.gif") left bottom repeat-x;
  93. }
  94. .status_msg {
  95. padding: 5px 10px;
  96. border: 1px solid #919191;
  97. background-color: #FBFBFB;
  98. color: #000000;
  99. }
  100. #buttons {
  101. margin: 13px 0;
  102. }
  103. #buttons li {
  104. float: left;
  105. display: block;
  106. margin: 0 7px 0 0;
  107. }
  108. #buttons a {
  109. float: left;
  110. display: block;
  111. padding: 1px 0 0 0;
  112. }
  113. #buttons a, #buttons a:link {
  114. text-decoration: none;
  115. }
  116. #refresh a {
  117. width: 62px;
  118. background: url("../images/button_refresh.gif") 0 0 no-repeat;
  119. }
  120. #refresh a:hover {
  121. background-position: -62px;
  122. }
  123. #restart_all a {
  124. width: 84px;
  125. background: url("../images/button_restart.gif") 0 0 no-repeat;
  126. }
  127. #restart_all a:hover {
  128. background-position: -84px;
  129. }
  130. #stop_all a {
  131. width: 65px;
  132. background: url("../images/button_stop.gif") 0 0 no-repeat;
  133. }
  134. #stop_all a:hover {
  135. background-position: -65px;
  136. }
  137. table {
  138. width: 100%;
  139. border: 1px solid #919191;
  140. }
  141. th {
  142. background-color: #919191;
  143. color: #fff;
  144. text-align: left;
  145. }
  146. th.state {
  147. text-align: center;
  148. width: 44px;
  149. }
  150. th.desc {
  151. width: 200px;
  152. }
  153. th.name {
  154. width: 200px;
  155. }
  156. th.action {
  157. }
  158. td, th {
  159. padding: 4px 8px;
  160. border-bottom: 1px solid #fff;
  161. }
  162. tr td {
  163. background-color: #FBFBFB;
  164. }
  165. tr.shade td {
  166. background-color: #F0F0F0;
  167. }
  168. .action ul {
  169. list-style: none;
  170. display: inline;
  171. }
  172. .action li {
  173. margin-right: 10px;
  174. display: inline;
  175. }
  176. /* status message */
  177. .status span {
  178. display: block;
  179. width: 60px;
  180. height: 16px;
  181. border: 1px solid #fff;
  182. text-align: center;
  183. font-size: 95%;
  184. line-height: 1.4em;
  185. }
  186. .statusnominal {
  187. background-image: url("../images/state0.gif");
  188. }
  189. .statusrunning {
  190. background-image: url("../images/state2.gif");
  191. }
  192. .statuserror {
  193. background-image: url("../images/state3.gif");
  194. }
  195. #footer {
  196. width: 760px;
  197. margin: 0 auto;
  198. padding: 0 10px;
  199. line-height: 30px;
  200. border: 1px solid #C8C8C2;
  201. border-bottom-width: 0;
  202. background-color: #FBFBFB;
  203. overflow: hidden;
  204. opacity: 0.7;
  205. color: #000;
  206. font-size: 95%;
  207. }
  208. #footer a {
  209. font-size: inherit;
  210. }