Created
October 11, 2024 17:45
-
-
Save moritztim/af1a322b3d5bc9998325eedc42c151a1 to your computer and use it in GitHub Desktop.
Displays only the spedometer of the beamng drive web UI. Your `appid` may vary.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bng-app:not([appid="3"]) { | |
display: none; | |
} | |
.container { | |
background: black !important; | |
} | |
.bng-app[appid="3"] { | |
width: 100vw !important; | |
height: 100vh !important; | |
max-height: 100vh !important;; | |
object-fit: contain !important;; | |
position: fixed !important;; | |
top: 100% !important;; | |
left: 50% !important;; | |
transform: translate(-50%, -50%) !important; | |
padding: none !important; | |
margin: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment