blue.css 448 B

123456789101112131415161718192021222324252627
  1. #noVNC-control-bar {
  2. background-color:#04073d;
  3. background-image: -webkit-gradient(
  4. linear,
  5. left bottom,
  6. left top,
  7. color-stop(0.54, rgb(10,15,79)),
  8. color-stop(0.5, rgb(4,7,61))
  9. );
  10. background-image: -moz-linear-gradient(
  11. center bottom,
  12. rgb(10,15,79) 54%,
  13. rgb(4,7,61) 50%
  14. );
  15. }
  16. .triangle-right {
  17. border:2px solid #fff;
  18. background:#04073d;
  19. color:#fff;
  20. }
  21. #keyboardinput {
  22. background-color:#04073d;
  23. }