2025-11-25

This commit is contained in:
2025-11-26 22:33:30 -05:00
commit 4dea48c1e2
12 changed files with 3459 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
body {
margin: 0;
padding: 0;
}
video {
width: 100%;
height: 100%;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
background-color: #000;
}
.centered-text {
text-align: center;
}
.controls-container {
margin-top: 10px;
}
.flex-container {
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
}
.flex-row {
display: flex;
flex-direction: row;
}
.flex-column {
display: flex;
flex-direction: column;
}
.video-container {
width: 500px;
height: 360px;
}
#app {
height: 100vh;
background-color: #f0f0f0;
}