Use markdown-it-html5-embed plugin so user can embed audio and video using the markdown link syntax []() in the HTML5 way.
21 lines
265 B
SCSS
21 lines
265 B
SCSS
$stub-bg-color: #ddd;
|
|
|
|
.media-embed {
|
|
margin-top: 5px;
|
|
|
|
.thumb {
|
|
@include video-overlay;
|
|
|
|
background-color: $stub-bg-color;
|
|
|
|
video {
|
|
min-height: 60%;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
audio {
|
|
width: 100%;
|
|
}
|
|
}
|