Fork-Awesome/assets/less/bootstrap-3.2.0/media.less

57 lines
848 B
Plaintext
Raw Normal View History

2013-01-02 13:40:00 +08:00
// Media objects
// Source: http://stubbornella.org/content/?p=497
// --------------------------------------------------
// Common styles
// -------------------------
// Clear the floats
.media,
.media-body {
overflow: hidden;
zoom: 1;
}
// Proper spacing between instances of .media
.media,
.media .media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
// For images and videos, set to block
.media-object {
display: block;
}
// Reset margins on headings for tighter default spacing
.media-heading {
margin: 0 0 5px;
}
// Media image alignment
// -------------------------
2013-10-23 23:12:39 +08:00
.media {
> .pull-left {
margin-right: 10px;
}
> .pull-right {
margin-left: 10px;
}
2013-01-02 13:40:00 +08:00
}
// Media list variation
// -------------------------
// Undo default ul/ol styles
.media-list {
2013-10-23 23:12:39 +08:00
padding-left: 0;
2013-01-02 13:40:00 +08:00
list-style: none;
}