134 lines
2.1 KiB
CSS
134 lines
2.1 KiB
CSS
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: #3b4b5b;
|
|
font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #bbb;
|
|
text-align: justify;
|
|
user-select: none;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
code {
|
|
font-size: 87.5%;
|
|
word-break: break-word;
|
|
user-select: text;
|
|
}
|
|
|
|
svg {
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
text-decoration-style: dotted;
|
|
color: inherit;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
color: #ddd;
|
|
}
|
|
|
|
select {
|
|
border: none;
|
|
color: inherit;
|
|
appearance: none;
|
|
|
|
/* Custom caret */
|
|
background-color: transparent;
|
|
background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(187, 187, 187)' height='24' viewBox='0 1 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
|
|
background-repeat: no-repeat;
|
|
background-position-x: 100%;
|
|
padding-right: 1.2rem;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
height: 100%;
|
|
}
|
|
|
|
.col-video {
|
|
padding: 1rem;
|
|
flex-basis: 0;
|
|
flex-grow: 1;
|
|
text-align: right;
|
|
|
|
/* Limit max width to limit video size */
|
|
margin: auto;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.video-responsive {
|
|
position: relative;
|
|
padding-top: 56.25%; /* 16/9 */
|
|
}
|
|
|
|
.video-responsive video {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 90vh;
|
|
|
|
/* Black borders when video is not 16/9 */
|
|
background-color: #000;
|
|
}
|
|
|
|
.col-chat {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
|
|
}
|
|
|
|
.col-chat iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
|
|
.ml-1 {
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
/* Hide chat toggler on small screen */
|
|
#sideWidgetToggle {
|
|
display: none;
|
|
}
|
|
|
|
/* On large screen, put chat on left */
|
|
@media(min-width:1000px){
|
|
.col-chat {
|
|
width: 33.33333%;
|
|
flex: 0 0 33.33333%;
|
|
}
|
|
|
|
#sideWidgetToggle {
|
|
display: inline;
|
|
}
|
|
}
|