@skylineos/videojs-clsp
Version:
Video JS plugin for Skyline Technology Solutions' CLSP Player - https://github.com/skylineos/clsp-player
98 lines (83 loc) • 1.31 kB
CSS
* {
box-sizing: border-box ;
}
html,
body,
.container-fit {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
}
html {
background-color: black;
}
body {
padding: 0.5em;
}
.header {
display: flex;
color: white;
justify-content: space-around;
padding: 0.5em;
font-size: 1.5em;
flex-grow: 0;
flex-shrink: 0;
}
.header > * {
margin: auto;
padding: 0 0.5em;
text-align: center;
}
#page-title {
font-size: 1.5em;
}
.versions {
display: flex;
flex-direction: column;
flex-shrink: 0;
}
.versions .version {
display: flex;
}
.versions .version .product {
flex-grow: 1;
flex-shrink: 0;
padding-right: 0.5em;
text-align: left;
}
.stream-container {
display: flex;
justify-content: center;
padding: 0.5em;
}
.stream-container input {
flex-grow: 1;
flex-shrink: 0;
padding: 0.5em;
margin-right: 0.5em;
max-width: 40%;
}
.video-container {
padding: 0.5em;
border: solid 2px white;
border-radius: 1em;
width: 50%;
margin: auto;
}
.controls {
display: flex;
width: 50%;
margin: 1em auto;
justify-content: space-around;
}
.controls button {
padding: 1em 2em;
font-size: 1.5em;
border-radius: 1em;
}