]> git.proxmox.com Git - mirror_novnc.git/blob - app/styles/lite.css
Remove unnecessary css rules for lite
[mirror_novnc.git] / app / styles / lite.css
1 /*
2 * noVNC auto CSS
3 * Copyright (C) 2012 Joel Martin
4 * Copyright (C) 2017 Samuel Mannehed for Cendio AB
5 * noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
6 * This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
7 */
8
9 body {
10 margin:0;
11 background-color:#313131;
12 border-bottom-right-radius: 800px 600px;
13 height:100%;
14 width:100%;
15 display: table;
16 }
17
18 html {
19 background-color:#494949;
20 height:100%;
21 }
22
23 #noVNC_status {
24 padding-top: 4px;
25 height:32px;
26 text-align: center;
27 color: #fff;
28 font: bold 12px Helvetica;
29 position: relative;
30 width: 100%;
31 margin-left: 0px;
32 }
33
34 .noVNC_status_normal {
35 background: linear-gradient(#b2bdcd 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
36 }
37
38 .noVNC_status_error {
39 background: linear-gradient(#c83737 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
40 }
41
42 .noVNC_status_warn {
43 background: linear-gradient(#b4b41e 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
44 }
45
46 /* Do not set width/height for VNC_canvas or incorrect
47 * scaling will occur. Canvas size depends on remote VNC
48 * settings and noVNC settings. */
49 #noVNC_canvas {
50 position: absolute;
51 left: 0;
52 right: 0;
53 margin: auto;
54 }