summaryrefslogtreecommitdiff
path: root/searx/static/less/bootstrap/responsive-embed.less
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-03-13 09:29:13 +0100
committerGitHub <noreply@github.com>2021-03-13 09:29:13 +0100
commit9292571304376c2c463fb26ee0db89298bb00e6c (patch)
tree8a2dba56227f67aa52b091d1674190cd40e1411e /searx/static/less/bootstrap/responsive-embed.less
parent22a2e544551e87fb9ea74d2fe07b59bfa0815368 (diff)
parentcb04d4280642164bddd37e39151bf22799ef3792 (diff)
Merge pull request #2346 from dalf/upgrade-oscar
[mod] oscar: upgrade dependencies
Diffstat (limited to 'searx/static/less/bootstrap/responsive-embed.less')
-rw-r--r--searx/static/less/bootstrap/responsive-embed.less34
1 files changed, 0 insertions, 34 deletions
diff --git a/searx/static/less/bootstrap/responsive-embed.less b/searx/static/less/bootstrap/responsive-embed.less
deleted file mode 100644
index a884d49fe..000000000
--- a/searx/static/less/bootstrap/responsive-embed.less
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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%;
- }
-}