mobile update part 3

This commit is contained in:
kone 2023-04-20 08:23:47 -04:00
parent 8d7903b5aa
commit acf5ab30de

View File

@ -23,6 +23,12 @@
text-align: center; text-align: center;
} }
*{
-webkit-tap-highlight-color: transparent;
user-select: none;
-webkit-user-select: none;
}
#progresstext { #progresstext {
font-weight: bold; font-weight: bold;
top: 30vh; top: 30vh;
@ -101,6 +107,9 @@
transform: translate(-50%); transform: translate(-50%);
opacity: 0; opacity: 0;
} }
#toggleControls:active {
background-color: black;
}
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
@ -335,7 +344,7 @@
</script> </script>
</head> </head>
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden; user-select: none;" id="game_frame"> <body style="margin:0px;width:100vw;height:100vh;overflow:hidden; user-select: none; -webkit-tap-highlight-color: transparent;" id="game_frame">
<div id = "dividk"> <div id = "dividk">
<h1 id="clienttitle">Resent Client</h1> <h1 id="clienttitle">Resent Client</h1>
<!--everything breaks if u remove this and i dont feel like changing the functions in here to fix it--> <!--everything breaks if u remove this and i dont feel like changing the functions in here to fix it-->
@ -352,7 +361,7 @@
</div> </div>
<button id="keyboardButton" style="display:none; position: absolute; left: 85vw; top: 0px; font-size: 15px; height: 50px; width: 100px;">Open Keyboard</button> <input type="text" id="fakeKeyboard" style="display:none; position: absolute; top: 0px; left: 85vw; width: 100px; height: 50px; opacity: 0;"> <button id="keyboardButton" style="display:none; position: absolute; left: 85vw; top: 0px; font-size: 15px; height: 50px; width: 100px; -webkit-tap-highlight-color: transparent;">Open Keyboard</button> <input type="text" id="fakeKeyboard" style="display:none; position: absolute; top: 0px; left: 85vw; width: 100px; height: 50px; opacity: 0; -webkit-tap-highlight-color: transparent;">
<button id="toggleControls" style="display:none; position: absolute; left: 85vw; top: 50px; font-size: 15px; height: 50px; width: 100px;">Toggle Controls</button> <button id="toggleControls" style="display:none; position: absolute; left: 85vw; top: 50px; font-size: 15px; height: 50px; width: 100px; -webkit-tap-highlight-color: transparent;">Toggle Controls</button>
</body> </body>
</html> </html>