aboutsummaryrefslogtreecommitdiff
path: root/less/_responsive-embed.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-08-04 15:36:41 -0700
committerMark Otto <[email protected]>2014-08-04 15:36:41 -0700
commitaf0921062fd6deb16d3406ab5e2489f3c69793d9 (patch)
treec0e99625dceaed5bd24b12a66b13a242c57995dd /less/_responsive-embed.less
parentef9e76c2c5fc587e8d5df043e1a0967c1f9de658 (diff)
downloadbootstrap-af0921062fd6deb16d3406ab5e2489f3c69793d9.tar.xz
bootstrap-af0921062fd6deb16d3406ab5e2489f3c69793d9.zip
rename imported files to preface with underscore; rerun grunt dist
Diffstat (limited to 'less/_responsive-embed.less')
-rw-r--r--less/_responsive-embed.less34
1 files changed, 34 insertions, 0 deletions
diff --git a/less/_responsive-embed.less b/less/_responsive-embed.less
new file mode 100644
index 000000000..a884d49fe
--- /dev/null
+++ b/less/_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%;
+ }
+}