diff options
| author | Max | 2017-05-18 14:03:27 +0200 |
|---|---|---|
| committer | Max | 2017-05-18 14:03:27 +0200 |
| commit | f597e2fe949a1e18eb778b9a5bd102de88570555 (patch) | |
| tree | 7e42e6f91dd3e764cd2cf0c4f61f48501c2ed98f /src/sass/bootstrap4/_media.scss | |
| download | docs.maxmail.xyz-f597e2fe949a1e18eb778b9a5bd102de88570555.tar.gz | |
Diffstat (limited to 'src/sass/bootstrap4/_media.scss')
| -rw-r--r-- | src/sass/bootstrap4/_media.scss | 90 |
1 files changed, 90 insertions, 0 deletions
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; +} |
