black.css 367 B

123456789101112131415161718192021
  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. }