plain.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_bar input {
  38. font-size: 10px;
  39. margin: 0px;
  40. padding: 0px;
  41. }
  42. #VNC_status {
  43. text-align: center;
  44. }
  45. #VNC_buttons {
  46. text-align: right;
  47. }
  48. .VNC_status_normal {
  49. background: #eee;
  50. }
  51. .VNC_status_error {
  52. background: #f44;
  53. }
  54. .VNC_status_warn {
  55. background: #ff4;
  56. }
  57. /* Do not set width/height for VNC_screen or VNC_canvas or incorrect
  58. * scaling will occur. Canvas resizes to remote VNC settings */
  59. #VNC_screen {
  60. text-align: center;
  61. display: table;
  62. }
  63. #VNC_canvas {
  64. background: #eee;
  65. }
  66. #VNC_clipboard_clear_button {
  67. }
  68. #VNC_clipboard_text {
  69. font-size: 9;
  70. }