plain.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #VNC_controls {
  2. overflow: hidden;
  3. }
  4. #VNC_controls ul {
  5. list-style: none;
  6. margin: 0px;
  7. padding: 0px;
  8. }
  9. #VNC_controls li {
  10. float: left;
  11. margin-right: 15px;
  12. }
  13. #VNC_host {
  14. width: 100px;
  15. }
  16. #VNC_port {
  17. width: 50px;
  18. }
  19. #VNC_password {
  20. width: 80px;
  21. }
  22. #VNC_encrypt {
  23. }
  24. #VNC_connectTimeout {
  25. width: 30px;
  26. }
  27. #VNC_connect_button {
  28. width: 110px;
  29. }
  30. #VNC_status_bar td {
  31. margin-top: 15px;
  32. padding: 0px;
  33. margin: 0px;
  34. }
  35. #VNC_status_bar div {
  36. font-size: 12px;
  37. margin: 0px;
  38. padding: 0px;
  39. }
  40. .VNC_status_button {
  41. font-size: 10px;
  42. margin: 0px;
  43. padding: 0px;
  44. }
  45. #VNC_status {
  46. text-align: center;
  47. }
  48. #VNC_settings_menu {
  49. display: none;
  50. position: absolute;
  51. width: 12em;
  52. border: 1px solid #888;
  53. background-color: #f0f2f6;
  54. padding: 5px; margin: 3px;
  55. z-index: 100; opacity: 1;
  56. text-align: left; white-space: normal;
  57. }
  58. #VNC_settings_menu ul {
  59. list-style: none;
  60. margin: 0px;
  61. padding: 0px;
  62. }
  63. .VNC_buttons_right {
  64. text-align: right;
  65. }
  66. .VNC_buttons_left {
  67. text-align: left;
  68. }
  69. .VNC_status_normal {
  70. background: #eee;
  71. }
  72. .VNC_status_error {
  73. background: #f44;
  74. }
  75. .VNC_status_warn {
  76. background: #ff4;
  77. }
  78. /* Do not set width/height for VNC_screen or VNC_canvas or incorrect
  79. * scaling will occur. Canvas resizes to remote VNC settings */
  80. #VNC_screen {
  81. text-align: center;
  82. display: table;
  83. }
  84. #VNC_canvas {
  85. background: #eee;
  86. }
  87. #VNC_clipboard_clear_button {
  88. }
  89. #VNC_clipboard_text {
  90. font-size: 9px;
  91. }