frame.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. height: calc(100% - 56px);
  12. border:none !important;
  13. outline:none !important;
  14. }
  15. .footerLeft{
  16. position: relative;
  17. display: flex;
  18. align-items: center;
  19. }
  20. #fpsLabel {
  21. cursor: default;
  22. z-index:10;
  23. color:white;
  24. pointer-events: none;
  25. user-select: none;
  26. line-height: 56px;
  27. vertical-align: middle;
  28. margin: auto 0px auto 15px;
  29. }
  30. .footer {
  31. position: absolute;
  32. width: 100%;
  33. height: 56px;
  34. bottom: 0;
  35. margin: 0;
  36. padding: 0;
  37. right: 0;
  38. left: 0;
  39. background-color: #3B789A;
  40. }
  41. .footerRight {
  42. display: inline;
  43. position: absolute;
  44. bottom: 0;
  45. right: 0px;
  46. top: 0px;
  47. }
  48. .footerRight a {
  49. float: left; /* Float links side by side */
  50. width: 56px;
  51. height: 56px;
  52. margin: 0px;
  53. padding: 0;
  54. transition: all 0.3s ease; /* Add transition for hover effects */
  55. }
  56. .footerRight a img {
  57. margin: 10px;
  58. }
  59. .footerRight a:hover {
  60. background-color: #2c5a74; /* Add a hover color */
  61. }
  62. .footerRight a:active{
  63. background-color: #162D3A; /* Add a hover color */
  64. }