black.css 1.91 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
body {
  margin: 0;
  font-size: 13px;
  color: #111;
  font-family: "Helvetica";
}

#VNC_controls {
  background: #111;
  line-height: 1em;
  color: #FFF;
  overflow: hidden;
  padding: 4px 24px;
}

#VNC_controls ul {
  list-style:none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
}
#VNC_controls li {
  margin-right: 15px;
  padding: 2px 0;
  float: left;
}
#VNC_controls li input[type=text],
#VNC_controls li input[type=password] {
  border: 2px solid #333;
}

#VNC_host {
    width: 100;
}
#VNC_port {
    width: 50;
}
#VNC_password {
    width: 80;
}
#VNC_encrypt {
}
#VNC_connect_button {
    width: 100px;
}

47 48 49 50 51 52 53 54 55 56 57
#VNC_status_bar td {
    padding: 0px;
    margin: 0px;
}
#VNC_status_bar div {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
    padding: 1em;
}
58
.VNC_status_button {
59 60 61 62
    font-size: 10px;
    margin: 0px;
    padding: 0px;
}
63
#VNC_status {
64
    text-align: center;
65
}
66 67 68 69 70 71 72 73 74 75 76 77 78 79
#VNC_settings_menu {
    display: none;
    position: absolute;
    width: 12em;
    border: 1px solid #888;
    background-color: #f0f2f6;
    padding: 5px; margin: 3px;
    z-index: 100; opacity: 1;
    text-align: left; white-space: normal;
}
#VNC_settings_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
80 81
}

82 83 84 85 86 87
.VNC_buttons_right {
    text-align: right;
}
.VNC_buttons_left {
    text-align: left;
}
88
.VNC_status_normal {
89
  background: #111;
90 91 92
  color: #fff;
}
.VNC_status_error {
93
  background: #111;
94 95 96
  color: #f44;
}
.VNC_status_warn {
97
  background: #111;
98 99
  color: #ff4;
}
100

101 102 103 104
#VNC_screen {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
105
  background: #111;
106 107 108 109 110 111 112 113 114 115 116
  padding: 20px;
  margin: 0 auto;
  color: #FFF;
  margin-top: 20px;
  text-align: center;

  /* This causes the width of the outer div(#screen) honor the size of the inner (#vnc) div */
  display: table; 
  table-layout: auto;
}
#VNC_canvas {
117
  background: #111;
118 119 120 121 122
  margin: 0 auto;
}
#VNC_clipboard {
  display: none;
}