81 lines
1.0 KiB
CSS
81 lines
1.0 KiB
CSS
/* Commun style */
|
|
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: #3b4b5b;
|
|
font-family: sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #bbb;
|
|
text-align: justify;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
code {
|
|
font-family: monospace;
|
|
font-size: 10pt;
|
|
word-break: break-word;
|
|
user-select: all;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
text-decoration-style: dotted;
|
|
color: inherit;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
color: #ddd;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.col-video {
|
|
flex-basis: 0;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
/* On large screen, put chat on left */
|
|
@media(min-width:1000px){
|
|
.col-chat {
|
|
width: 33.33333%;
|
|
flex: 0 0 33.33333%;
|
|
}
|
|
}
|