diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-09-29 10:00:24 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 14:40:47 +0200 |
| commit | 841f1eedfc8b2c49f0395d5f0ea2bfa269c19df2 (patch) | |
| tree | bf56c830fbed336796c7586f84b46df82d5c2d81 /searx/static/oscar/less/bootstrap/responsive-embed.less | |
| parent | 14b0604bc0a14a110c92457f43b3828fc22e7fc7 (diff) | |
oscar template: generate bootstrap.min.css from source
Diffstat (limited to 'searx/static/oscar/less/bootstrap/responsive-embed.less')
| -rw-r--r-- | searx/static/oscar/less/bootstrap/responsive-embed.less | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/searx/static/oscar/less/bootstrap/responsive-embed.less b/searx/static/oscar/less/bootstrap/responsive-embed.less new file mode 100644 index 000000000..a884d49fe --- /dev/null +++ b/searx/static/oscar/less/bootstrap/responsive-embed.less @@ -0,0 +1,34 @@ +// Embeds responsive +// +// Credit: Nicolas Gallagher and SUIT CSS. + +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; + + .embed-responsive-item, + iframe, + embed, + object { + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0; + } + + // Modifier class for 16:9 aspect ratio + &.embed-responsive-16by9 { + padding-bottom: 56.25%; + } + + // Modifier class for 4:3 aspect ratio + &.embed-responsive-4by3 { + padding-bottom: 75%; + } +} |