contents of zip

This commit is contained in:
transatoshi
2024-12-20 18:08:44 -08:00
parent aeb2b99db7
commit f03ed73d2b
261 changed files with 208197 additions and 0 deletions

30
styles/tetris.css Executable file
View File

@@ -0,0 +1,30 @@
@charset "UTF-8";
section.tetris {
width: 100%;
height: 100%;
position: absolute;
z-index: 6;
top: 0;
left: 0;
display: flex;
background: rgba(0, 0, 0, 0.31);
visibility: visible;
opacity: 1;
transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
section.tetris.hide {
visibility: hidden;
opacity: 0;
pointer-events: none;
}
section.tetris > canvas {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
margin: auto;
}