Move video style to file

This commit is contained in:
Carl Pearson
2024-09-20 05:43:19 -06:00
parent d88373e939
commit ab63347549
3 changed files with 37 additions and 34 deletions

32
static/style/video.css Normal file
View File

@@ -0,0 +1,32 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
h1 {
text-align: center;
}
.video-container {
max-width: 600px;
margin: 0 auto;
}
video {
width: 100%;
max-width: 600px;
display: block;
margin: 0 auto;
}
@media (max-width: 600px) {
.video-container {
max-width: 100%;
}
video {
max-width: 100%;
}
}