bootstrap/scss/_media.scss

84 lines
936 B
SCSS
Raw Normal View History

2015-04-19 02:38:47 +08:00
//
// Media
// --------------------------------------------------
2015-04-27 16:50:38 +08:00
@if $enable-flex {
.media {
display: flex;
margin-bottom: $spacer;
}
.media-body {
flex: 1;
}
} @else {
.media {
margin-top: 15px;
2015-04-27 16:50:38 +08:00
&: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;
}
2014-10-26 09:13:35 +08:00
}
2015-04-27 16:50:38 +08:00
//
// Images/elements as the media anchor
//
.media-object {
display: block;
}
2015-04-27 16:50:38 +08:00
//
// Alignment
//
2015-05-30 07:05:42 +08:00
.media-right {
2014-10-26 09:13:35 +08:00
padding-left: 10px;
}
2015-05-30 07:05:42 +08:00
.media-left {
2014-10-26 09:13:35 +08:00
padding-right: 10px;
}
2014-10-26 09:13:35 +08:00
2015-04-27 16:50:38 +08:00
//
// Headings
//
.media-heading {
2014-10-26 09:13:35 +08:00
margin-top: 0;
margin-bottom: 5px;
}
2015-04-27 16:50:38 +08:00
//
// Media list variation
2014-10-26 09:13:35 +08:00
//
2015-04-27 16:50:38 +08:00
.media-list {
padding-left: 0;
list-style: none;
}