black.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. body {
  2. margin: 0;
  3. font-size: 13px;
  4. color: #111;
  5. font-family: "Helvetica";
  6. }
  7. #VNC_controls {
  8. background: #111;
  9. line-height: 1em;
  10. color: #FFF;
  11. overflow: hidden;
  12. padding: 4px 24px;
  13. }
  14. #VNC_controls ul {
  15. list-style:none;
  16. list-style-position: outside;
  17. margin: 0;
  18. padding: 0;
  19. }
  20. #VNC_controls li {
  21. margin-right: 15px;
  22. padding: 2px 0;
  23. float: left;
  24. }
  25. #VNC_controls li input[type=text],
  26. #VNC_controls li input[type=password] {
  27. border: 2px solid #333;
  28. }
  29. #VNC_host {
  30. width: 100;
  31. }
  32. #VNC_port {
  33. width: 50;
  34. }
  35. #VNC_password {
  36. width: 80;
  37. }
  38. #VNC_encrypt {
  39. }
  40. #VNC_connect_button {
  41. width: 100px;
  42. }
  43. #VNC_status_bar td {
  44. padding: 0px;
  45. margin: 0px;
  46. }
  47. #VNC_status_bar div {
  48. font-size: 12px;
  49. font-weight: bold;
  50. text-align: center;
  51. margin: 0px;
  52. padding: 1em;
  53. }
  54. .VNC_status_button {
  55. font-size: 10px;
  56. margin: 0px;
  57. padding: 0px;
  58. }
  59. #VNC_status {
  60. text-align: center;
  61. }
  62. #VNC_settings_menu {
  63. display: none;
  64. position: absolute;
  65. width: 12em;
  66. border: 1px solid #888;
  67. background-color: #f0f2f6;
  68. padding: 5px; margin: 3px;
  69. z-index: 100; opacity: 1;
  70. text-align: left; white-space: normal;
  71. }
  72. #VNC_settings_menu ul {
  73. list-style: none;
  74. margin: 0;
  75. padding: 0;
  76. }
  77. .VNC_buttons_right {
  78. text-align: right;
  79. }
  80. .VNC_buttons_left {
  81. text-align: left;
  82. }
  83. .VNC_status_normal {
  84. background: #111;
  85. color: #fff;
  86. }
  87. .VNC_status_error {
  88. background: #111;
  89. color: #f44;
  90. }
  91. .VNC_status_warn {
  92. background: #111;
  93. color: #ff4;
  94. }
  95. #VNC_screen {
  96. -webkit-border-radius: 10px;
  97. -moz-border-radius: 10px;
  98. border-radius: 10px;
  99. background: #111;
  100. padding: 20px;
  101. margin: 0 auto;
  102. color: #FFF;
  103. margin-top: 20px;
  104. text-align: center;
  105. /* This causes the width of the outer div(#screen) honor the size of the inner (#vnc) div */
  106. display: table;
  107. table-layout: auto;
  108. }
  109. #VNC_canvas {
  110. background: #111;
  111. margin: 0 auto;
  112. }
  113. #VNC_clipboard {
  114. display: none;
  115. }