frame.css 768 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. color: white;
  20. }
  21. #link {
  22. position: absolute;
  23. width: 100%;
  24. bottom: 10px;
  25. cursor: default;
  26. color: white;
  27. text-align: center;
  28. left:0;
  29. cursor:pointer;
  30. }
  31. #refresh {
  32. position: absolute;
  33. width: 100%;
  34. top: 10px;
  35. cursor: default;
  36. color: white;
  37. text-align: center;
  38. left:0;
  39. cursor:pointer;
  40. }