]> git.proxmox.com Git - mirror_novnc.git/blob - include/black.css
Helper function for viewport meta changes.
[mirror_novnc.git] / include / black.css
1 body {
2 margin: 0px;
3 font-size: 13px;
4 color: #111;
5 font-family: "Helvetica";
6 }
7
8 #VNC_controls {
9 background: #111;
10 line-height: 1em;
11 color: #FFF;
12 overflow: hidden;
13 padding: 4px 24px;
14 }
15
16 #VNC_controls ul {
17 list-style:none;
18 list-style-position: outside;
19 margin: 0px;
20 padding: 0px;
21 }
22 #VNC_controls li {
23 margin-right: 15px;
24 padding: 2px 0px;
25 float: left;
26 }
27 #VNC_controls li input[type=text],
28 #VNC_controls li input[type=password] {
29 border: 2px solid #333;
30 }
31
32 #VNC_host {
33 width: 100px;
34 }
35 #VNC_port {
36 width: 50px;
37 }
38 #VNC_password {
39 width: 80px;
40 }
41 #VNC_encrypt {
42 }
43 #VNC_connect_button {
44 width: 100px;
45 }
46
47 #VNC_status_bar td {
48 padding: 0px;
49 margin: 0px;
50 }
51 #VNC_status_bar div {
52 font-size: 12px;
53 font-weight: bold;
54 text-align: center;
55 margin: 0px;
56 padding: 1em;
57 }
58 .VNC_status_button {
59 font-size: 10px;
60 margin: 0px;
61 padding: 0px;
62 }
63 #VNC_status {
64 text-align: center;
65 }
66 #VNC_settings_menu {
67 display: none;
68 position: absolute;
69 width: 13em;
70 border: 1px solid #888;
71 color: #111;
72 font-weight: normal;
73 background-color: #f0f2f6;
74 padding: 5px; margin: 3px;
75 z-index: 100; opacity: 1;
76 text-align: left; white-space: normal;
77 }
78 #VNC_settings_menu ul {
79 list-style: none;
80 margin: 0px;
81 padding: 0px;
82 }
83
84 .VNC_buttons_right {
85 text-align: right;
86 }
87 .VNC_buttons_left {
88 text-align: left;
89 }
90 .VNC_status_normal {
91 background: #111;
92 color: #fff;
93 }
94 .VNC_status_error {
95 background: #111;
96 color: #f44;
97 }
98 .VNC_status_warn {
99 background: #111;
100 color: #ff4;
101 }
102
103 #VNC_screen {
104 -webkit-border-radius: 10px;
105 -moz-border-radius: 10px;
106 border-radius: 10px;
107 background: #111;
108 padding: 20px;
109 margin: 0 auto;
110 color: #FFF;
111 margin-top: 20px;
112 text-align: center;
113
114 /* This causes the width of the outer div(#screen) honor the size of the inner (#vnc) div */
115 display: table;
116 table-layout: auto;
117 }
118 #VNC_canvas {
119 background: #111;
120 margin: 0 auto;
121 }
122 #VNC_clipboard {
123 display: none;
124 }