style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. html {
  2. background: $bottomWrapper.bg.color;
  3. margin:0 0 0 -1px;
  4. padding:0;
  5. overflow-Y: scroll;
  6. }
  7. body {
  8. padding:0;
  9. margin :0;
  10. display:table;
  11. width:100%;
  12. background-color:#FFFFFF;
  13. background-position : center 190px;
  14. }
  15. #wrapper {
  16. margin:0 auto ;
  17. width:100%;
  18. border-top:1px solid #ffffff;
  19. background-color: white;
  20. background-image: url(images/wrapper-bg.png);
  21. }
  22. #topWrapper {
  23. border:none;
  24. border:0px;
  25. margin:0px;
  26. padding:0px;
  27. height:120px;
  28. background-color:${topWrapper.bg.color};
  29. background-image:url(images/topWrapper-bg.jpg);
  30. background-position:center top ;
  31. background-repeat:repeat-x;
  32. }
  33. #topBanner {
  34. width:1000px;
  35. margin:0 auto;
  36. height:120px;
  37. background-image:url(images/topBanner.png);
  38. background-repeat:no-repeat;
  39. }
  40. #refresh-manual {
  41. color:#333333;
  42. height:23px;
  43. background: #eee;
  44. padding-top:5px;
  45. padding-left:5px;
  46. padding-right:5px;
  47. text-align: center;
  48. font-family:"Trebuchet MS";
  49. font-size:12px;
  50. border-radius: 0 0 7px 7px;
  51. margin-left: 735px;
  52. border: 1px solid #CFCFCF;
  53. position:absolute;
  54. margin-top:-6px;
  55. }
  56. .main-content {
  57. background:#FFF;
  58. margin-top:20px;
  59. border:1px solid #c8c8c8;
  60. padding: 5px 20px 20px 20px;
  61. border-radius:9px;
  62. -moz-border-radius:9px;
  63. overflow:auto;
  64. }
  65. hr {
  66. display:none;
  67. }
  68. /*Menu*/
  69. .menu-bg{
  70. background:#333333;
  71. }
  72. .menu{
  73. border:none;
  74. border:0px;
  75. margin:0 auto;
  76. padding:0px;
  77. font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
  78. font-size:14px;
  79. font-weight:bold;
  80. background:#333333;
  81. display: table;
  82. }
  83. .menu ul{
  84. background:#333333;
  85. height:35px;
  86. list-style:none;
  87. margin:0 auto;
  88. padding:0;
  89. }
  90. .menu li{
  91. float:left;
  92. padding:0px;
  93. }
  94. .menu li a{
  95. color:#cccccc;
  96. display:block;
  97. font-weight:normal;
  98. line-height:35px;
  99. margin:0px;
  100. padding:0px 25px;
  101. text-align:center;
  102. text-decoration:none;
  103. }
  104. .menu li a:hover, .menu ul li:hover a{
  105. background: #999 url("images/hover.gif") bottom center no-repeat;
  106. color:#FFFFFF;
  107. text-decoration:none;
  108. }
  109. .menu li ul{
  110. background:#333333;
  111. display:none;
  112. height:auto;
  113. padding:0px;
  114. margin:0px;
  115. border:0px;
  116. position:absolute;
  117. width:225px;
  118. z-index:200;
  119. /*top:1em;
  120. /*left:0;*/
  121. }
  122. .menu li:hover ul{
  123. display:block;
  124. }
  125. .menu li li {
  126. display:block;
  127. float:none;
  128. margin:0px;
  129. padding:0px;
  130. width:225px;
  131. }
  132. .menu li:hover li a{
  133. background:none;
  134. }
  135. .menu li ul a{
  136. display:block;
  137. /*
  138. height is not correct here, as extra long lines wrap and overwrite text rather than expanding
  139. It should be min-height
  140. */
  141. min-height:35px;
  142. font-size:12px;
  143. font-style:normal;
  144. margin:0px;
  145. padding:0px 10px 0px 15px;
  146. text-align:left;
  147. }
  148. .menu li ul a:hover, .menu li ul li:hover a{
  149. background:#999 url('images/hover_sub.gif') center left no-repeat;
  150. border:0px;
  151. color:#ffffff;
  152. text-decoration:none;
  153. }
  154. .menu p{
  155. clear:left;
  156. }
  157. .user_menu_link_selected{
  158. background-color:#666;
  159. background-image:url("images/hover.gif");
  160. background-position:bottom center;
  161. background-repeat:no-repeat;
  162. }
  163. .admin_menu_link_selected{
  164. background-color:#666;
  165. background-image:url("images/hover.gif");
  166. background-position:bottom center;
  167. background-repeat:no-repeat;
  168. }
  169. #submenu_1{
  170. margin-left:100%;
  171. margin-top:-35px;
  172. white-space: nowrap;
  173. border:0;
  174. width: auto !important;
  175. }
  176. #submenu_0 li{
  177. cursor:default !important;
  178. }
  179. #submenu_1 li{
  180. display:none;
  181. width: auto !important;
  182. }
  183. #submenu_1 li a{
  184. background:none !important;
  185. }
  186. #submenu_1 li:hover a{
  187. background:#999 url('images/hover_sub.gif') center left no-repeat !important;
  188. }
  189. #submenu_0 li:hover ul li{
  190. display:block;
  191. }
  192. /*End Of Menu*/
  193. #container {
  194. margin:0 auto;
  195. width:920px;
  196. min-height:400px;
  197. margin-bottom: -15px;
  198. padding-bottom: 40px;
  199. }
  200. #banner {
  201. margin:15px auto;
  202. width:100%;
  203. }
  204. #content {
  205. width:920px;
  206. margin:0 auto ;
  207. text-align:left;
  208. }
  209. #content a:link, #content a:visited{
  210. color:#9b251b;
  211. font-weight:bold;
  212. }
  213. #content p {
  214. margin-top:10px;
  215. text-align:left;
  216. }
  217. .last {
  218. margin-right:0 !important;
  219. clear:right;
  220. }
  221. .one_two {
  222. float:left;
  223. width:424px;
  224. position:relative;
  225. margin-left:36px;
  226. margin-right:36px;
  227. }
  228. .one_fourth {
  229. float:left;
  230. width:212px;
  231. position:relative;
  232. }
  233. .bloc {
  234. padding:1px 15px 1px 15px;
  235. background-color:#FFF;
  236. border-radius:9px;
  237. -moz-border-radius: 9px;
  238. border:1px solid #C8C8C8;
  239. overflow:hidden;
  240. text-align:left;
  241. font-size:0.9em;
  242. }
  243. .bloc h4 {
  244. font-size:15px;
  245. margin-left:-15px;
  246. margin-right:-15px;
  247. cursor:move;
  248. }
  249. .dragbox-content{
  250. padding-top:15px;
  251. padding-bottom:15px;
  252. }
  253. .column {
  254. min-height:150px;
  255. }
  256. .column .dragbox{
  257. margin-bottom:20px;
  258. }
  259. .column .placeholder{
  260. background: #f0f0f0;
  261. border:1px dashed #ddd;
  262. }
  263. .dragbox h4.collapse{
  264. background:#f0f0f0 url('images/collapse.png') no-repeat top right;
  265. background-size:25px 100%;
  266. }
  267. .dragbox h4 .configure{
  268. font-size:11px; font-weight:normal;
  269. margin-right:30px; float:right;
  270. }
  271. .half {
  272. float:left;
  273. width:440px;
  274. margin: 20px 40px 20px 0px;
  275. position:relative;
  276. }
  277. .padd15 {
  278. padding:15px;
  279. }
  280. .padd20 {
  281. padding:20px;
  282. }
  283. body {
  284. color:#444444;
  285. font-family: 'Trebuchet MS', sans-serif;
  286. font-size: 13px;
  287. font-style: normal;
  288. font-weight: normal;
  289. text-transform: normal;
  290. background-color: #010101;
  291. }
  292. p {
  293. letter-spacing: normal;
  294. line-height: 1.7em;
  295. }
  296. p2 {
  297. text-align:left;
  298. margin:10px 0 10px 0;
  299. color:#FFFFFF;
  300. font-size:20px;
  301. clear:both;
  302. }
  303. h0 {
  304. color:#333333;
  305. margin:10px 0 10px 0;
  306. clear:both;
  307. width: 918px;
  308. height:35px;
  309. background:#f5f5f5;
  310. border-style:solid;
  311. border-color:#cfcfcf;
  312. border-width:1px;
  313. margin-top:20px;
  314. padding-top:10px;
  315. text-align: center;
  316. font-family:"Trebuchet MS";
  317. font-size:20px;
  318. display:block;
  319. font-weight:bold;
  320. border-radius: 9px;
  321. }
  322. h1 {
  323. color:#333333;
  324. margin:20px 0 10px 0;
  325. clear:both;
  326. }
  327. h2 {
  328. color:#333333;
  329. margin:10px 0 10px 0;
  330. clear:both;
  331. width:918px;
  332. height:35px;
  333. background:#f5f5f5;
  334. border-top-style:solid;
  335. border-top-color:#cfcfcf;
  336. border-top-width:1px;
  337. border-bottom-style:solid;
  338. border-bottom-color:#cfcfcf;
  339. border-bottom-width:1px;
  340. margin-left:-20px;
  341. margin-top:-6px;
  342. padding-top:10px;
  343. text-align: center;
  344. font-family:"Trebuchet MS"
  345. }
  346. h3 {
  347. color:#333333;
  348. margin:10px 0 5px 0;
  349. clear:both;
  350. }
  351. h4 {
  352. margin:0 auto;
  353. height:31px;
  354. background:#f5f5f5;
  355. border-top-style:solid;
  356. border-top-color:#afafaf;
  357. border-top-width:1px;
  358. border-bottom-style:solid;
  359. border-bottom-color:#cfcfcf;
  360. border-bottom-width:1px;
  361. border-top:none;
  362. padding-top:10px;
  363. text-align: center;
  364. font-family:"Trebuchet MS"
  365. }
  366. a:link, a:visited {
  367. color:#9b251b;
  368. text-decoration:none;
  369. }
  370. a:hover {
  371. text-decoration:underline;
  372. }
  373. #bottomWrapper {
  374. background-color:#101010;
  375. background-image:url(images/bottomWrapper-bg.png);
  376. background-position:center top ;
  377. background-repeat:repeat-x;
  378. text-align:center;
  379. color:#70806D;
  380. text-align:center;
  381. width:100%;
  382. clear:both;
  383. }
  384. #bottomWrapper a:link, #bottomWrapper a:visited {
  385. color:#e8ddcb;
  386. }
  387. #bottomWrapper a:hover{
  388. color:#cdb380;
  389. text-decoration:none;
  390. }
  391. #footer {
  392. min-height:260px;
  393. width:920px;
  394. margin:0 auto;
  395. background-color:#101010;
  396. background-image:url(images/footer-bg.png);
  397. background-position:center top ;
  398. background-repeat:no-repeat;
  399. }
  400. .footer-last {
  401. margin-right:0 !important;
  402. clear:right;
  403. }
  404. .footer-one-third {
  405. float:left;
  406. margin:40px 100px 20px 0;
  407. width:240px;
  408. position:relative;
  409. text-align:left;
  410. overflow:hidden;
  411. }
  412. .footer-one-third h2 {
  413. margin-top:10px;
  414. color:#FFF;
  415. }
  416. .footer-one-third ul{
  417. border-top:1px solid #1a1a1a;
  418. padding:0 ;
  419. }
  420. .footer-one-third ul, .footer-one-third li {
  421. list-style: none ;
  422. margin-left:0 ;
  423. }
  424. .footer-one-third li {
  425. border-bottom:1px solid #1a1a1a;
  426. padding: 5px 0 ;
  427. }
  428. #bottom-links {
  429. height:60px;
  430. background:#010101 url('images/bottomLinks-bg.png') center top repeat-x;
  431. }
  432. a img {
  433. border:none;
  434. }
  435. .online_servers{
  436. color:#000000;
  437. background-color:#FCBG0D;
  438. margin-left:auto;
  439. margin-right:auto;
  440. text-align:center;
  441. border:1px solid black;
  442. }
  443. .online_servers tr td{
  444. border-left:1px solid gray;
  445. border-right:2px solid gray;
  446. border-top:1px solid gray;
  447. border-bottom:2px solid gray;
  448. background-image: url(images/wrapper-bg.png);
  449. }
  450. /* tables */
  451. table.tablesorter {
  452. font-family:arial;
  453. background-color: #FFF;
  454. margin:10px 0pt 15px;
  455. font-size: 8pt;
  456. width: 100%;
  457. text-align: left;
  458. border-collapse: collapse;
  459. border-spacing: 1px;
  460. border-left: 1px solid #1F2A34;
  461. border-right: 1px solid #1F2A34;
  462. }
  463. table.tablesorter thead tr th, table.tablesorter tfoot tr th {
  464. background-color: #e6EEEE;
  465. border: 1px solid grey;
  466. font-size: 8pt;
  467. padding: 4px;
  468. }
  469. table.tablesorter thead tr .header {
  470. background-image: url(images/bg.gif);
  471. background-repeat: no-repeat;
  472. background-position: center right;
  473. cursor: pointer;
  474. }
  475. table.tablesorter tbody td {
  476. color: #3D3D3D;
  477. padding: 4px;
  478. background-color: #FFF;
  479. vertical-align: top;
  480. border: 1px solid grey;
  481. }
  482. table.tablesorter tbody tr.odd td {
  483. background-color:#F0F0F6;
  484. }
  485. table.tablesorter thead tr .headerSortUp {
  486. background-image: url(images/asc.gif);
  487. }
  488. table.tablesorter thead tr .headerSortDown {
  489. background-image: url(images/desc.gif);
  490. }
  491. table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  492. background-color: #8dbdd8;
  493. }
  494. table.tablesorter tfoot td {
  495. color: #3D3D3D;
  496. padding: 4px;
  497. background-color: #FFF;
  498. vertical-align: top;
  499. border: 1px solid grey;
  500. }
  501. .hidden{
  502. visibility:hidden;
  503. font-size:0px;
  504. }
  505. /* some additions */
  506. .install{
  507. margin-left:auto;
  508. margin-right:auto;
  509. text-align:left;
  510. font-size:1.1em;
  511. }
  512. .failure {
  513. color: red;
  514. text-align:center;
  515. }
  516. .success {
  517. color: green;
  518. text-align:center;
  519. }
  520. pre {
  521. text-decoration: none;
  522. text-align: left;
  523. clear: both;
  524. margin: 0 auto;
  525. padding: 0;
  526. color: white;
  527. background-color: black;
  528. border-left: 10px #000000 solid;
  529. border-right: 10px #000000 solid;
  530. border-top: 5px #000000 solid;
  531. border-bottom: 5px #000000 solid;
  532. word-wrap:  / 
  533. overflow: auto;
  534. }
  535. .log {
  536. text-decoration: none;
  537. color: white;
  538. background-color: black;
  539. border-left: 5px #000000 solid;
  540. border-right: 5px #000000 solid;
  541. border-top: 5px #000000 solid;
  542. border-bottom: 5px #000000 solid;
  543. word-wrap:  / 
  544. overflow: auto;
  545. }
  546. .button {
  547. border:1px dotted gray;
  548. }
  549. .server_monitor {
  550. background:#EEEEEE;
  551. }
  552. .monitor-1 {
  553. float:left;
  554. display: inline-block;
  555. }
  556. .monitor-1 div {
  557. float:left;
  558. padding-right:5px;
  559. display: inline-block;
  560. }
  561. .monitor-2 {
  562. float:right;
  563. display: inline-block;
  564. text-align: center;
  565. padding:10px;
  566. }
  567. .monitor-2 div{
  568. display: inline-block;
  569. }
  570. .monitor-3 {
  571. clear:both;
  572. position:relative;
  573. top:5px;
  574. margin-bottom:5px;
  575. }
  576. .srvctrl{
  577. border: none;
  578. border-collapse: collapse;
  579. border-spacing: 0;
  580. }
  581. .srvctrl td, .srvctrl th{
  582. padding: 0;
  583. border:none;
  584. }
  585. .mapicon{
  586. width:135px;
  587. height:100px;
  588. float:left;
  589. }
  590. .hostname{
  591. width:100px;
  592. }
  593. .login {
  594. margin-left:auto;
  595. margin-right:auto;
  596. }
  597. .lostpass {
  598. margin-left:auto;
  599. margin-right:auto;
  600. }
  601. .note{
  602. text-align:center;
  603. }
  604. p{
  605. text-align:center;
  606. }
  607. /* end additions */
  608. .player_monitor{
  609. border-collapse:collapse;
  610. }
  611. .player_monitor th{
  612. background:#CCC;
  613. }
  614. .player_monitor tbody tr td{
  615. }
  616. .player_monitor tbody tr td .odd{
  617. background:333;
  618. }
  619. .input { border: 1px solid #006; }
  620. input[type="submit"] {
  621. border: 1px solid black;
  622. padding: 2px 8px;
  623. }
  624. .jqmWindow {
  625. display: none;
  626. position: fixed;
  627. top: 17%;
  628. left: 50%;
  629. margin-left: -300px;
  630. width: 600px;
  631. background-color: #EEE;
  632. color: #333;
  633. border: 1px solid black;
  634. padding: 12px;
  635. }
  636. .jqmOverlay { background-color: #000; }
  637. * iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
  638. width: expression(this.parentNode.offsetWidth+'px');
  639. height: expression(this.parentNode.offsetHeight+'px');
  640. }
  641. * html .jqmWindow {
  642. position: absolute;
  643. top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
  644. }
  645. .administration-table {
  646. text-align:center;
  647. margin-left:auto;
  648. margin-right:auto;
  649. margin-bottom:20px;
  650. }
  651. .administration-buttons {
  652. padding:15px;
  653. }
  654. .remove-button {
  655. width:10px;
  656. border:0px solid transparent;
  657. }
  658. .start-server{
  659. width:440px;
  660. word-wrap:break-word;
  661. table-layout:fixed;
  662. }
  663. .start-server td.left select{
  664. max-width:265px;
  665. }
  666. .start-server td.left input[type=text]{
  667. word-break: normal;
  668. }
  669. .start-server td.right{
  670. width:145px;
  671. }
  672. .submit-start{
  673. text-align:center;
  674. }
  675. .owner{
  676. width:90px;
  677. word-break:break-all;
  678. }
  679. .operations{
  680. width:320px;
  681. }
  682. .ts3-add-virtual select{
  683. max-width:194px;
  684. }
  685. .server-starting, .list_table{
  686. width:440px;
  687. }
  688. .server-starting td , .list_table td{
  689. max-width: 250px;
  690. }