49 lines
621 B
CSS
49 lines
621 B
CSS
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;
|
|
}
|