mirror of
https://github.com/gnoxnahte/obsidian-auto-embed.git
synced 2026-07-22 09:50:24 +00:00
38 lines
No EOL
617 B
CSS
38 lines
No EOL
617 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
iframe.auto-embed {
|
|
max-width: 100%;
|
|
/* min-height: 500px; */
|
|
}
|
|
|
|
iframe.small.auto-embed {
|
|
min-height: 300px;
|
|
}
|
|
|
|
iframe.large.auto-embed {
|
|
min-height: 1000px;
|
|
}
|
|
|
|
iframe.largest.auto-embed {
|
|
min-height: calc(100vh - 100px);
|
|
}
|
|
|
|
.auto-embed.twitter-embed {
|
|
width: 600px;
|
|
height: 350px;
|
|
min-height: unset;
|
|
}
|
|
|
|
.auto-embed.youtube-embed {
|
|
/* width: 560px;
|
|
height: 315px; */
|
|
|
|
width: 100%;
|
|
aspect-ratio: 1.7777;
|
|
} |