header.html 11 KB

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