blue.css 638 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * noVNC base CSS
  3. * Copyright (C) 2012 Joel Martin
  4. * noVNC is licensed under the LGPL-3 (see LICENSE.txt)
  5. * This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
  6. */
  7. #noVNC-control-bar {
  8. background-color:#04073d;
  9. background-image: -webkit-gradient(
  10. linear,
  11. left bottom,
  12. left top,
  13. color-stop(0.54, rgb(10,15,79)),
  14. color-stop(0.5, rgb(4,7,61))
  15. );
  16. background-image: -moz-linear-gradient(
  17. center bottom,
  18. rgb(10,15,79) 54%,
  19. rgb(4,7,61) 50%
  20. );
  21. }
  22. .triangle-right {
  23. border:2px solid #fff;
  24. background:#04073d;
  25. color:#fff;
  26. }
  27. #keyboardinput {
  28. background-color:#04073d;
  29. }