blue.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .noVNC_status_normal {
  9. background-color:#04073d;
  10. background-image: -webkit-gradient(
  11. linear,
  12. left bottom,
  13. left top,
  14. color-stop(0.54, rgb(10,15,79)),
  15. color-stop(0.5, rgb(4,7,61))
  16. );
  17. background-image: -moz-linear-gradient(
  18. center bottom,
  19. rgb(10,15,79) 54%,
  20. rgb(4,7,61) 50%
  21. );
  22. }
  23. .noVNC_status_error {
  24. background-color:#f04040;
  25. background-image: -webkit-gradient(
  26. linear,
  27. left bottom,
  28. left top,
  29. color-stop(0.54, rgb(240,64,64)),
  30. color-stop(0.5, rgb(4,7,61))
  31. );
  32. background-image: -moz-linear-gradient(
  33. center bottom,
  34. rgb(4,7,61) 54%,
  35. rgb(249,64,64) 50%
  36. );
  37. }
  38. .noVNC_status_warn {
  39. background-color:#f0f040;
  40. background-image: -webkit-gradient(
  41. linear,
  42. left bottom,
  43. left top,
  44. color-stop(0.54, rgb(240,240,64)),
  45. color-stop(0.5, rgb(4,7,61))
  46. );
  47. background-image: -moz-linear-gradient(
  48. center bottom,
  49. rgb(4,7,61) 54%,
  50. rgb(240,240,64) 50%
  51. );
  52. }
  53. .triangle-right {
  54. border:2px solid #fff;
  55. background:#04073d;
  56. color:#fff;
  57. }
  58. #noVNC_keyboardinput {
  59. background-color:#04073d;
  60. }