nodebb-plugin-embed
Version:
Embed media and rich content in posts: youtube, vimeo, twitch etc. All embeds are based on the rules. You are encouraged to build your own rules to embed everything what is embeddable.
28 lines (23 loc) • 394 B
text/less
.embed-wrapper {
width: 100%;
max-width: 640px;
overflow: hidden;
&.embed-vine {
max-width: 480px;
.embed-container {
padding-bottom: 100%;
}
}
.embed-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
}