]> git.proxmox.com Git - mirror_novnc.git/blame - app/styles/lite.css
Remove unnecessary css rules for lite
[mirror_novnc.git] / app / styles / lite.css
CommitLineData
ecd49c15
PO
1/*
2 * noVNC auto CSS
3 * Copyright (C) 2012 Joel Martin
178bf8ec 4 * Copyright (C) 2017 Samuel Mannehed for Cendio AB
ecd49c15
PO
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
9body {
10 margin:0;
178bf8ec
SM
11 background-color:#313131;
12 border-bottom-right-radius: 800px 600px;
ecd49c15 13 height:100%;
178bf8ec
SM
14 width:100%;
15 display: table;
ecd49c15
PO
16}
17
18html {
178bf8ec 19 background-color:#494949;
ecd49c15
PO
20 height:100%;
21}
22
ecd49c15 23#noVNC_status {
ecd49c15
PO
24 padding-top: 4px;
25 height:32px;
26 text-align: center;
ecd49c15 27 color: #fff;
8167e459
SM
28 font: bold 12px Helvetica;
29 position: relative;
ecd49c15
PO
30 width: 100%;
31 margin-left: 0px;
32}
33
34.noVNC_status_normal {
0bc4e4eb 35 background: linear-gradient(#b2bdcd 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
ecd49c15
PO
36}
37
38.noVNC_status_error {
082bc6b4 39 background: linear-gradient(#c83737 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
ecd49c15
PO
40}
41
42.noVNC_status_warn {
082bc6b4 43 background: linear-gradient(#b4b41e 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
ecd49c15
PO
44}
45
ecd49c15
PO
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;
8167e459 53 margin: auto;
ecd49c15 54}