
With this the backend is officially at an MVP stage and now requires polishing Proper data streaming for larger clips is basically required for a really good backend(especially async streaming) and some better css for the video player
51 lines
711 B
CSS
51 lines
711 B
CSS
html, body, div, tag {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font-size: 100%;
|
|
vertical-align: baseline;
|
|
background: #212121;
|
|
text-align: center;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: whitesmoke;
|
|
}
|
|
|
|
.content {
|
|
margin: 0 auto;
|
|
padding: 0 2em;
|
|
line-height: 1.6em;
|
|
color: whitesmoke;
|
|
}
|
|
.video-gallery {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.video-block {
|
|
padding: 1em;
|
|
width: 400px;
|
|
line-height: 1em;
|
|
margin-right: 1em;
|
|
margin-bottom: 1em;
|
|
background: #191818;
|
|
border-radius: 1em;
|
|
}
|
|
video {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.pure-form {
|
|
text-align: center;
|
|
}
|
|
.pure-img {
|
|
border-radius: 0.5em;
|
|
}
|