Remove padlabel id

This commit is contained in:
Unrud 2022-02-21 22:30:17 +01:00
parent 41c3e0b10d
commit 1f3aa58568
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@
<button id="reloadbutton"></button> <button id="reloadbutton"></button>
</div> </div>
<div id="pad" class="scene touch key fullscreen hidden"> <div id="pad" class="scene touch key fullscreen hidden">
<p id="padlabel" class="touch">Touchpad</p> <p class="touch">Touchpad</p>
<button id="keysbutton"></button> <button id="keysbutton"></button>
<button id="fullscreenbutton"></button> <button id="fullscreenbutton"></button>
<button id="keyboardbutton"></button> <button id="keyboardbutton"></button>

View file

@ -76,7 +76,7 @@ button:focus {
max-width: 100%; max-width: 100%;
} }
#padlabel { #pad > p {
color: gray; color: gray;
text-shadow: text-shadow:
-1px -1px 0 black, -1px -1px 0 black,
@ -89,7 +89,7 @@ button:focus {
} }
@media (max-width: 32rem) { @media (max-width: 32rem) {
#padlabel { #pad > p {
font-size: 13vw; font-size: 13vw;
} }
} }