forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
17 lines
302 B
CSS
17 lines
302 B
CSS
/**
|
|
* @file
|
|
* Makes oembed iframe responsive, leaving the rest to media/oembed.iframe.
|
|
*/
|
|
|
|
/** This class ensures Blazy does not interfere non-blazy oembed iframes. */
|
|
.is-b-oembed {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.is-b-oembed iframe {
|
|
border: 0;
|
|
height: 100vh;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
}
|