add form link and fix css for full screen mode

This commit is contained in:
2026-05-01 01:24:52 +00:00
parent c8fa69a4d1
commit 459de8a5a9
2 changed files with 23 additions and 0 deletions

View File

@@ -20,8 +20,10 @@
<li><a href="g/pacman.html">Pacman</a></li> <li><a href="g/pacman.html">Pacman</a></li>
<li><a href="g/portal.html">Portal</a></li> <li><a href="g/portal.html">Portal</a></li>
<li><a href="g/hyw.html">Happy Wheels</a></li> <li><a href="g/hyw.html">Happy Wheels</a></li>
<li><a href="g/btd5.html">Bloons Tower Defense 5</a></li>
</ul> </ul>
<p>powered by ruffle :D</p> <p>powered by ruffle :D</p>
<p>fyi if you want me to add a game, or want a takedown of a game, plz fill out <a href="https://forms.gle/5jVXzBErF4iU7AAu5">this form</a></p>
</div> </div>
</body> </body>
</html> </html>

View File

@@ -38,4 +38,25 @@ a:link {
} }
a:hover { a:hover {
color: #4343ff; color: #4343ff;
}
#flash-container {
width: 100%;
max-width: 80%;
aspect-ratio: 4 / 3; /* adjust if needed */
margin: auto;
}
#flash-container ruffle-player,
#flash-container canvas {
width: 100% !important;
height: 100% !important;
object-fit: contain;
}
#flash-container {
width: min(90vw, 800px); /* container size */
margin: auto;
display: flex;
justify-content: center;
align-items: center;
} }