summaryrefslogtreecommitdiff
path: root/searx/static/oscar/less/bootstrap/responsive-embed.less
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2014-11-11 09:36:39 +0100
committerAdam Tauber <asciimoo@gmail.com>2014-11-11 09:36:39 +0100
commit0d80d5d3b45f9c761a7fd6c457538b54f6d25fce (patch)
treea669f19b5f3a6886ae8c9930e97aa97af3e00778 /searx/static/oscar/less/bootstrap/responsive-embed.less
parentb422788eb46906d9befbd8b7399bf4653e1fb14e (diff)
parent25312c53e170deb55bd48029e3b76b87692e1911 (diff)
Merge pull request #105 from pointhi/template_oscar
new template: oscar
Diffstat (limited to 'searx/static/oscar/less/bootstrap/responsive-embed.less')
-rw-r--r--searx/static/oscar/less/bootstrap/responsive-embed.less34
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%;
+ }
+}