black.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. body {
  2. margin: 0px;
  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: 0px;
  18. padding: 0px;
  19. }
  20. #VNC_controls li {
  21. margin-right: 15px;
  22. padding: 2px 0px;
  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: 100px;
  31. }
  32. #VNC_port {
  33. width: 50px;
  34. }
  35. #VNC_password {
  36. width: 80px;
  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: 13em;
  66. border: 1px solid #888;
  67. color: #111;
  68. font-weight: normal;
  69. background-color: #f0f2f6;
  70. padding: 5px; margin: 3px;
  71. z-index: 100; opacity: 1;
  72. text-align: left; white-space: normal;
  73. }
  74. #VNC_settings_menu ul {
  75. list-style: none;
  76. margin: 0px;
  77. padding: 0px;
  78. }
  79. .VNC_buttons_right {
  80. text-align: right;
  81. }
  82. .VNC_buttons_left {
  83. text-align: left;
  84. }
  85. .VNC_status_normal {
  86. background: #111;
  87. color: #fff;
  88. }
  89. .VNC_status_error {
  90. background: #111;
  91. color: #f44;
  92. }
  93. .VNC_status_warn {
  94. background: #111;
  95. color: #ff4;
  96. }
  97. #VNC_screen {
  98. -webkit-border-radius: 10px;
  99. -moz-border-radius: 10px;
  100. border-radius: 10px;
  101. background: #111;
  102. padding: 20px;
  103. margin: 0 auto;
  104. color: #FFF;
  105. margin-top: 20px;
  106. text-align: center;
  107. /* This causes the width of the outer div(#screen) honor the size of the inner (#vnc) div */
  108. display: table;
  109. table-layout: auto;
  110. }
  111. #VNC_canvas {
  112. background: #111;
  113. margin: 0 auto;
  114. }
  115. #VNC_clipboard {
  116. display: none;
  117. }