]> git.proxmox.com Git - mirror_novnc.git/blob - include/blue.css
Update copyright
[mirror_novnc.git] / include / blue.css
1 /*
2 * noVNC blue CSS
3 * Copyright (C) 2012 Joel Martin
4 * Copyright (C) 2013 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 .noVNC_status_normal {
10 background-color:#04073d;
11 background-image: -webkit-gradient(
12 linear,
13 left bottom,
14 left top,
15 color-stop(0.54, rgb(10,15,79)),
16 color-stop(0.5, rgb(4,7,61))
17 );
18 background-image: -moz-linear-gradient(
19 center bottom,
20 rgb(10,15,79) 54%,
21 rgb(4,7,61) 50%
22 );
23 }
24 .noVNC_status_error {
25 background-color:#f04040;
26 background-image: -webkit-gradient(
27 linear,
28 left bottom,
29 left top,
30 color-stop(0.54, rgb(240,64,64)),
31 color-stop(0.5, rgb(4,7,61))
32 );
33 background-image: -moz-linear-gradient(
34 center bottom,
35 rgb(4,7,61) 54%,
36 rgb(249,64,64) 50%
37 );
38 }
39 .noVNC_status_warn {
40 background-color:#f0f040;
41 background-image: -webkit-gradient(
42 linear,
43 left bottom,
44 left top,
45 color-stop(0.54, rgb(240,240,64)),
46 color-stop(0.5, rgb(4,7,61))
47 );
48 background-image: -moz-linear-gradient(
49 center bottom,
50 rgb(4,7,61) 54%,
51 rgb(240,240,64) 50%
52 );
53 }
54
55 .triangle-right {
56 border:2px solid #fff;
57 background:#04073d;
58 color:#fff;
59 }
60
61 #noVNC_keyboardinput {
62 background-color:#04073d;
63 }
64