Add comprehensive styles for video streaming and chat interface

- Implement base styles for the application layout and components.
- Define color variables for consistent theming.
- Style the video player, chat section, and user interface elements.
- Add responsive design adjustments for mobile devices.
- Include animations for buttons and notifications for enhanced user experience.
This commit is contained in:
Vincent 2025-09-28 22:03:28 -04:00
parent 0dd0dbb834
commit da1528c529
7 changed files with 3658 additions and 0 deletions

14
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,14 @@
{
"configurations": [
{
"type": "php",
"request": "launch",
"name": "Launch PHP Program",
"program": "${workspaceFolder}/index.php",
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"port": 9003
}
]
}