Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-01-01 10:29:26 -04:00
parent 6f2f8bd2ca
commit bdf09be9b5
4 changed files with 1094 additions and 0 deletions

39
assets/css/style.css Normal file
View File

@@ -0,0 +1,39 @@
html, body{
width: 100%;
height: 100%;
margin: 0%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
table{
width: 100%;
height: 100%;
border-collapse: collapse;
}
table, td, tr{
border: 1px solid black;
}
.bg-color{
background-color: black;
}
.message{
width: 15rem;
height: 5rem;
margin: 10px;
background-color: black;
color: white;
border-radius: 2rem;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
top: 0px;
left: 0px;
opacity: 0;
}