File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2405,6 +2405,20 @@ muteButtonElement.textContent = isMuted ? "SOUND OFF" : "SOUND ON";
24052405muteButtonElement . addEventListener ( "click" , toggleMute ) ;
24062406document . body . appendChild ( muteButtonElement ) ;
24072407
2408+ // Add UI for LGTM 2025 text
2409+ const lgtmElement = document . createElement ( "div" ) ;
2410+ lgtmElement . style . position = "fixed" ;
2411+ lgtmElement . style . bottom = "50px" ;
2412+ lgtmElement . style . right = "70px" ;
2413+ lgtmElement . style . color = "#00ff40" ;
2414+ lgtmElement . style . fontSize = "40px" ;
2415+ lgtmElement . style . fontFamily = "'DepartureMono', 'Courier New', monospace" ;
2416+ lgtmElement . style . zIndex = "1000" ;
2417+ lgtmElement . style . textShadow =
2418+ "0 0 10px #00ff40, 0 0 20px #00ff40, 0 0 40px #00ff40, 0 0 80px #00ff40" ;
2419+ lgtmElement . textContent = "LGTM 2025" ;
2420+ document . body . appendChild ( lgtmElement ) ;
2421+
24082422// Add UI for start game prompt
24092423const startPromptElement = document . createElement ( "div" ) ;
24102424startPromptElement . style . position = "fixed" ;
You can’t perform that action at this time.
0 commit comments