frame.css 829 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. html, body, canvas {
  2. overflow: hidden;
  3. width: 100%;
  4. height: 100%;
  5. background-color: #272822;
  6. margin:0;
  7. font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  8. touch-action: none;
  9. }
  10. canvas {
  11. border:none !important;
  12. outline:none !important;
  13. }
  14. #fpsLabel {
  15. position: absolute;
  16. right: 10px;
  17. top: 20px;
  18. cursor: default;
  19. z-index:10;
  20. background-color: #7283a0;
  21. color:white;
  22. padding:5px;
  23. font-family: 'Segoe UI';
  24. pointer-events: none;
  25. user-select: none;
  26. }
  27. .refreshlabel, .editlabel{
  28. position: absolute;
  29. left: 0px;
  30. cursor: pointer;
  31. color: white;
  32. background-color: #7283a0;
  33. color:white;
  34. padding:5px;
  35. }
  36. .refreshlabel {
  37. top: 20px;
  38. }
  39. .editlabel {
  40. top: 75px;
  41. }