header.html 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. <html>
  2. <head>
  3. <link rel="icon" href="/images/favicon.ico" type="image/x-icon">
  4. <title>Vesta - <?php echo "$TAB"; ?> </title>
  5. <style type="text/css">
  6. img {
  7. border: none;
  8. }
  9. body {
  10. margin: 0;
  11. margin-left: auto;
  12. margin-right: auto;
  13. background-image: url(/images/b.png);
  14. behavior: url(/css/csshover3.htc)
  15. }
  16. .main {
  17. background: #ffffff;
  18. border-left: 1px solid #cccccc;
  19. border-right: 1px solid #cccccc;
  20. box-shadow: 0 0 8px 8px #d7d7d7;
  21. <?php
  22. if (!empty($_SESSION['look'])) {
  23. echo " border-left: 2px solid #f79b44;";
  24. echo " border-right: 2px solid #f79b44;";
  25. }
  26. ?>
  27. }
  28. .top {
  29. background: #484243;
  30. color: #ebe2ae;
  31. padding: 0 10 0 0;
  32. margin-left: auto;
  33. margin-right: auto;
  34. width: 990px;
  35. font-family: Arial, Helvetica, sans-serif;
  36. font-size: 10pt;
  37. text-align: right;
  38. }
  39. .top-link {
  40. text-decoration: none;
  41. color: #dbdbdb;
  42. }
  43. .top-link:visited {
  44. text-decoration: none;
  45. color: #dbdbdb;
  46. }
  47. .top-link:hover {
  48. text-decoration: underline;
  49. color: white;
  50. }
  51. .top-link:active{
  52. text-decoration: underline;
  53. color: #e5a907
  54. }
  55. .top-slink {
  56. text-decoration: none;
  57. color: #e5a907;
  58. }
  59. .bottom {
  60. background: #ebe9dc;
  61. color: #484243;
  62. color: #777;
  63. margin: 30 0 0 0;
  64. padding: 4 20 8 0;
  65. margin-left: auto;
  66. margin-right: auto;
  67. width: 990px;
  68. font-family: Arial, Helvetica, sans-serif;
  69. font-size: 8pt;
  70. text-align: center;
  71. vertical-align:top;
  72. line-height: 0.8em;
  73. border-top: 4px solid #d6d4c9;
  74. }
  75. .bottom a:link {
  76. font-size: 7pt;
  77. text-decoration: none;
  78. color: #555;
  79. }
  80. .bottom a:visited {
  81. font-size: 7pt;
  82. text-decoration: none;
  83. color: #555;
  84. }
  85. .bottom a:hover {
  86. font-size: 7pt;
  87. text-decoration: underline;
  88. color: #333;
  89. }
  90. .nav {
  91. background: #cce4f0;
  92. margin-left: auto;
  93. margin-right: auto;
  94. width: 990px;
  95. text-align: left;
  96. vertical-align:top;
  97. padding: 0;
  98. border-bottom: 8px solid #F5F3E6;
  99. }
  100. .nav td {
  101. text-align: left;
  102. vertical-align:top;
  103. margin: 0;
  104. padding: 0;
  105. }
  106. #nav-block {
  107. padding: 0;
  108. float: left;
  109. }
  110. #nav-block ul {
  111. margin-top: 0;
  112. }
  113. #nav-block li {
  114. display: inline;
  115. list-style: none outside none;
  116. float: left;
  117. height: 102px;
  118. width: 95px;
  119. padding: 20px 0 2px 15px;
  120. line-height: 1.0em;
  121. font-size: 9pt;
  122. font-family: Arial, Helvetica, sans-serif;
  123. color: #2d2d2d;
  124. background: url(/images/transparent-image.png) no-repeat;
  125. }
  126. #nav-block li:first-child {
  127. margin-left:-10px
  128. }
  129. #nav-block li:hover {
  130. background: #f6f6f6;
  131. color: black;
  132. }
  133. .nav-link {
  134. font-size: 16pt;
  135. color: #484243;
  136. font-family: 'Trebuchet MS';
  137. text-decoration: none;
  138. }
  139. .nav-link:hover {
  140. text-decoration: underline;
  141. }
  142. .nav-link:active {
  143. color: #68797d;
  144. text-decoration: underline;
  145. }
  146. .nav-slink {
  147. font-size: 16pt;
  148. color: #8b99a2;
  149. font-family: 'Trebuchet MS';
  150. text-decoration: none;
  151. }
  152. .sub-menu {
  153. margin-left: auto;
  154. margin-right: auto;
  155. width: 990px;
  156. font-family: Arial, Helvetica, sans-serif;
  157. font-size: 10pt;
  158. text-align: left;
  159. vertical-align:top;
  160. padding: 10px 10px 16px 0;
  161. }
  162. .add {
  163. padding: 0 8px 0 3px;
  164. margin: 0;
  165. font-family: Arial, Helvetica, sans-serif;
  166. text-decoration: none;
  167. color: #34536A;
  168. font-size: 12pt;
  169. }
  170. .add:hover {
  171. text-decoration: underline;
  172. }
  173. .add:active {
  174. color: #849322;
  175. }
  176. .counters {
  177. line-height: 1.4em;
  178. font-size: 9pt;
  179. font-family: Arial, Helvetica, sans-serif;
  180. color: #2d2d2d;
  181. padding: 6px 0 0 0;
  182. margin: 0;
  183. height:73px;
  184. }
  185. .hostname {
  186. font-size: 8pt;
  187. font-family: Arial, Helvetica, sans-serif;
  188. text-align: left;
  189. padding: 0 5;
  190. color: #cccccc;
  191. }
  192. .data {
  193. border-collapse:collapse;
  194. margin-left: auto;
  195. margin-right: auto;
  196. width: 990px;
  197. font-family: Georgia, serif;
  198. font-size: 12pt;
  199. text-align: left;
  200. vertical-align:top;
  201. margin: 0;
  202. }
  203. .data-row:hover {
  204. margin: 0;
  205. background-color: #f7f6ed;
  206. }
  207. .data-add {
  208. margin: 0;
  209. background-color: #f7f6ed;
  210. }
  211. .data-dotted {
  212. text-align: left;
  213. vertical-align:top;
  214. border-top:1px dotted #dce8f5;
  215. padding: 0 0 26px 0;
  216. margin: 0;
  217. }
  218. .data-dotted td {
  219. margin: 0;
  220. }
  221. .data-col1 {
  222. text-align: left;
  223. padding: 0;
  224. }
  225. .data-col2 {
  226. text-align: left;
  227. padding: 0;
  228. overflow: hidden;
  229. }
  230. .data-col5 {
  231. table-layout: fixed;
  232. text-align: left;
  233. padding: 0;
  234. overflow: hidden;
  235. white-space: nowrap;
  236. }
  237. .data-date {
  238. padding: 0 0 0 18;
  239. letter-spacing: 0.3em;
  240. font-size: 8pt;
  241. font-family: Tahoma;
  242. color: #6A6A6A
  243. }
  244. .data-active {
  245. font-size: 8pt;
  246. font-family: Georgia;
  247. letter-spacing: 0.1em;
  248. color: #80C376;
  249. padding: 0 0 13 18;
  250. }
  251. .data-suspended {
  252. font-size: 8pt;
  253. font-family: Georgia;
  254. letter-spacing: 0.1em;
  255. color: #de6c5d;
  256. padding: 0 0 13 18;
  257. }
  258. .data-controls {
  259. border-left: 1px solid #E6E6E6;
  260. font-size: 8pt;
  261. font-family: Arial, Helvetica, sans-serif;
  262. padding: 2 5 0 5;
  263. letter-spacing: 0.1em;
  264. }
  265. .data-controls:hover {
  266. background: #f79b44;
  267. }
  268. .data-controls a:link {
  269. color: #34536A;
  270. text-decoration: none;
  271. }
  272. .data-controls a:visited {
  273. color: #34536A;
  274. text-decoration: none;
  275. }
  276. .data-controls a:hover {
  277. color: #ffffff;
  278. text-decoration: none;
  279. }
  280. .data-controls a:active {
  281. color: #433832;
  282. text-decoration: none;
  283. }
  284. .chart1 {
  285. font-family: Arial, Helvetica, sans-serif;
  286. font-size: 10pt;
  287. }
  288. .chart2 {
  289. color: #484243;
  290. font-family: Arial, Helvetica, sans-serif;
  291. font-size: 8pt;
  292. }
  293. .username {
  294. font-family: Arial, Helvetica, sans-serif;
  295. font-size: 16pt;
  296. line-height: 0.8em;
  297. }
  298. .domain {
  299. font-family: Arial, Helvetica, sans-serif;
  300. font-size: 16pt;
  301. line-height: 0.8em;
  302. }
  303. .cron {
  304. font-family: Arial, Helvetica, sans-serif;
  305. font-size: 14pt;
  306. }
  307. .log {
  308. font-family: Arial, Helvetica, sans-serif;
  309. font-size: 12pt;
  310. }
  311. .aliases {
  312. font-family: Georgia;
  313. font-size: 12pt;
  314. color: #5c4d45;
  315. padding: 0 0 0 8px;
  316. }
  317. .nginx-ext {
  318. color: black;
  319. vertical-align:top;
  320. font-family: Arial, Helvetica, sans-serif;
  321. font-size: 10pt;
  322. line-height: 1.2em;
  323. }
  324. .fullname {
  325. font-family: Georgia;
  326. font-size: 14pt;
  327. color: #5c4d45;
  328. padding: 0 0 0 8px;
  329. }
  330. .counter-name {
  331. vertical-align:top;
  332. line-height: 1em;
  333. font-family: Arial, Helvetica, sans-serif;
  334. font-size: 10pt;
  335. color: #484243;
  336. }
  337. .cron-counter-name {
  338. vertical-align:top;
  339. line-height: 0.8em;
  340. font-family: Arial, Helvetica, sans-serif;
  341. font-size: 8pt;
  342. padding: 4 0 0 0;
  343. color: #484243;
  344. }
  345. .counter-value {
  346. vertical-align:top;
  347. line-height: 1.2em;
  348. font-family: Arial, Helvetica, sans-serif;
  349. font-size: 10pt;
  350. color: black;
  351. }
  352. .log-counter-value {
  353. vertical-align:top;
  354. font-family: Arial, Helvetica, sans-serif;
  355. font-size: 12pt;
  356. color: #484243;
  357. }
  358. .cron-counter-value {
  359. vertical-align:top;
  360. line-height: 1.2em;
  361. font-family: Arial, Helvetica, sans-serif;
  362. font-size: 12pt;
  363. color: #484243;
  364. }
  365. .add-name {
  366. font-family: Georgia;
  367. font-size: 14pt;
  368. color: #5c4d45;
  369. padding: 0 0 0 28px;
  370. }
  371. .add-error {
  372. font-family: Georgia;
  373. font-size: 14pt;
  374. color: #de6c5d;
  375. padding: 0 0 0 6px;
  376. }
  377. .add-text {
  378. font-family: Arial, Helvetica, sans-serif;
  379. font-size: 12pt;
  380. }
  381. .add-input {
  382. padding: 4px 80px 3px 0;
  383. font-size: 14pt;
  384. color: #555;
  385. }
  386. .add-list {
  387. padding: 4px;
  388. font-size: 12pt;
  389. color: #555;
  390. }
  391. .add-button {
  392. padding: 4px;
  393. margin: 0 6px 0 0;
  394. font-size: 12pt;
  395. }
  396. </style>
  397. <link type="text/css" href="/css/jquery-custom-dialogs.css" rel="stylesheet" />
  398. <script type="text/javascript" src="/js/jquery-1.7.2.min.js"></script>
  399. <script type="text/javascript" src="/js/jquery-ui-1.8.20.custom.min.js"></script>
  400. <script language="JavaScript">
  401. function checkAll(bx) {
  402. var cbs = document.getElementsByTagName('input');
  403. for(var i=0; i < cbs.length; i++) {
  404. if(cbs[i].type == 'checkbox') {
  405. cbs[i].checked = bx.checked;
  406. }
  407. }
  408. }
  409. </script>
  410. </head>
  411. <body>
  412. <center>