Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/helpers/_embed.scss')
-rw-r--r--assets/stylesheets/bootstrap/helpers/_embed.scss31
1 files changed, 0 insertions, 31 deletions
diff --git a/assets/stylesheets/bootstrap/helpers/_embed.scss b/assets/stylesheets/bootstrap/helpers/_embed.scss
deleted file mode 100644
index 924fc0e..0000000
--- a/assets/stylesheets/bootstrap/helpers/_embed.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-// Credit: Nicolas Gallagher and SUIT CSS.
-
-.embed-responsive {
- position: relative;
- width: 100%;
-
- &::before {
- display: block;
- content: "";
- }
-
- .embed-responsive-item,
- iframe,
- embed,
- object,
- video {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
-}
-
-@each $key, $ratio in $embed-responsive-aspect-ratios {
- .embed-responsive-#{$key} {
- &::before {
- padding-top: percentage(map-get($ratio, y) / map-get($ratio, x));
- }
- }
-}