made the turn arrows look better

This commit is contained in:
Václav Šmejkal 2023-05-24 10:33:45 +02:00
parent 9c436393ae
commit fb926b3484
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59
2 changed files with 16 additions and 2 deletions

View File

@ -15,7 +15,9 @@
<canvas id="panorama">This browser doesn't seem to support canvas. sorry idk</canvas>
</div>
<button onclick="turn_left()">Turn Left</button>
<button onclick="turn_right()">Turn Right</button>
<div id="sipky">
<button onclick="turn_left()">&#8701;</button>
<button onclick="turn_right()">&#8702;</button>
</div>
</body>
</html>

View File

@ -7,4 +7,16 @@
{
width: 100%;
text-align:center;
}
#sipky
{
margin-left: 47.5%;
}
#sipky > button
{
width: 50px;
height: 50px;
font-size: 30px;
}