empty the pong to minimum set up

This commit is contained in:
NigeParis 2025-12-13 08:57:38 +01:00 committed by Maix0
parent 7c20066b63
commit 5354c01bad
15 changed files with 156 additions and 687 deletions

View file

@ -0,0 +1,2 @@
import './pong.css';

105
frontend/src/pong/pong.css Normal file
View file

@ -0,0 +1,105 @@
@import "tailwindcss";
@font-face {
font-family: "Nimbus Mono L";
src: url("/fonts/NimbusMonoL.woff2") format("woff2");
}
@tailwind utilities;
.btn-style {
@apply
w-[100px]
h-[32px]
border-1
border-gray-500
rounded-3xl
bg-gray-500
text-white
cursor-pointer
shadow-[0_2px_0_0_black]
transition-all
hover:bg-blue-200
active:bg-gray-400
active:translate-y-[1px]
active:shadow-[0_2px_0_0_black];
}
.chatbox-style {
@apply
w-[650px]
h-[300px] /* increase height if needed */
p-[8px]
border-1
border-black
shadow-2xl
text-left
text-gray-700
bg-white
rounded-3xl
overflow-y-auto
whitespace-pre-line
flex
flex-col
mx-auto;
}
.system-info {
@apply
h-[40px]
bg-gray-200
text-gray-700
p-3
rounded-3xl
mb-2 border
border-gray-200
text-center
shadow
overflow-y-auto
justify-end /* 👈 forces text to bottom */
relative; /* needed for overlay */
}
.displaybox {
@apply
fixed
inset-0
flex
items-center
justify-center
bg-[#43536b];
}
.mainboxDisplay {
@apply
fixed
top-1/2
left-1/2
-translate-x-1/2
-translate-y-1/2
bg-gray-200 w-[850px]
p-6 rounded-xl
shadow-2xl
text-center z-50;
}
.mainboxDisplay button {
@apply
cursor-pointer
}
.title {
@apply
text-6xl
font-bold
text-gray-800
}
p {
@apply
text-black
}