plain.css 1.4 KB

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