1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- html, body, canvas {
- overflow: hidden;
- width: 100%;
- height: 100%;
- background-color: #272822;
- margin:0;
- font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- touch-action: none;
- }
- canvas {
- height: calc(100% - 56px);
- border:none !important;
- outline:none !important;
- }
- .footerLeft{
- position: relative;
- display: flex;
- align-items: center;
- }
- #fpsLabel {
- cursor: default;
- z-index:10;
- color:white;
- pointer-events: none;
- user-select: none;
- line-height: 56px;
- vertical-align: middle;
- margin: auto 0px auto 15px;
- }
- .footer {
- position: absolute;
- width: 100%;
- height: 56px;
- bottom: 0;
- margin: 0;
- padding: 0;
- right: 0;
- left: 0;
- background-color: #3B789A;
- }
- .footerRight {
- display: inline;
- position: absolute;
- bottom: 0;
- right: 0px;
- top: 0px;
- }
- .footerRight a {
- float: left; /* Float links side by side */
- width: 56px;
- height: 56px;
- margin: 0px;
- padding: 0;
- transition: all 0.3s ease; /* Add transition for hover effects */
- }
- .footerRight a img {
- margin: 10px;
- }
- .footerRight a:hover {
- background-color: #2c5a74; /* Add a hover color */
- }
- .footerRight a:active{
- background-color: #162D3A; /* Add a hover color */
- }
|