mirror of
https://github.com/kemko/nomad.git
synced 2026-01-15 06:45:41 +03:00
38 lines
497 B
SCSS
38 lines
497 B
SCSS
body.livestream {
|
|
background-color: black;
|
|
}
|
|
|
|
.livestream-container {
|
|
display: block;
|
|
}
|
|
|
|
|
|
.livestream-video {
|
|
display: block;
|
|
margin: 0 auto;
|
|
max-width: 1000px;
|
|
}
|
|
|
|
#live-stream-video {
|
|
margin-top: 15px;
|
|
border: 0 none transparent;
|
|
width: 100%;
|
|
height: 650px;
|
|
|
|
@media (min-width: 1200px) {
|
|
height: 650px;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
height: 500px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
height: 325px;
|
|
}
|
|
|
|
@media (max-width: 422px) {
|
|
height: 225px;
|
|
}
|
|
}
|