black.css 435 B

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