From f597e2fe949a1e18eb778b9a5bd102de88570555 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 18 May 2017 14:03:27 +0200 Subject: Initial commit. --- src/sass/bootstrap4/_media.scss | 90 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/sass/bootstrap4/_media.scss (limited to 'src/sass/bootstrap4/_media.scss') diff --git a/src/sass/bootstrap4/_media.scss b/src/sass/bootstrap4/_media.scss new file mode 100644 index 0000000..4163db3 --- /dev/null +++ b/src/sass/bootstrap4/_media.scss @@ -0,0 +1,90 @@ +@if $enable-flex { + .media { + display: flex; + margin-bottom: $spacer; + } + .media-body { + flex: 1; + } + .media-middle { + align-self: center; + } + .media-bottom { + align-self: flex-end; + } +} @else { + .media { + margin-top: 15px; + + &:first-child { + margin-top: 0; + } + } + .media, + .media-body { + overflow: hidden; + zoom: 1; + } + .media-body { + width: 10000px; + } + .media-left, + .media-right, + .media-body { + display: table-cell; + vertical-align: top; + } + .media-middle { + vertical-align: middle; + } + .media-bottom { + vertical-align: bottom; + } +} + + +// +// Images/elements as the media anchor +// + +.media-object { + display: block; + + // Fix collapse in webkit from max-width: 100% and display: table-cell. + &.img-thumbnail { + max-width: none; + } +} + + +// +// Alignment +// + +.media-right { + padding-left: 10px; +} + +.media-left { + padding-right: 10px; +} + + +// +// Headings +// + +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} + + +// +// Media list variation +// + +.media-list { + padding-left: 0; + list-style: none; +} -- cgit v1.2.3