media.less 860 Bytes
Newer Older
1
2
3
// Media objects
// Source: http://stubbornella.org/content/?p=497
// --------------------------------------------------
4

5
6
7
8
9
10

// Common styles
// -------------------------

// Clear the floats
.media,
11
12
13
14
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
15
}
16
17
18

// Proper spacing between instances of .media
.media,
19
.media .media {
20
  margin-top: 15px;
21
}
22
23
.media:first-child {
  margin-top: 0;
24
}
25
26
27

// For images and videos, set to block
.media-object {
28
  display: block;
29
30
}

31
32
33
// Reset margins on headings for tighter default spacing
.media-heading {
  margin: 0 0 5px;
34
35
36
}


37
38
39
// Media image alignment
// -------------------------

40
.media > .pull-left {
41
  margin-right: 10px;
42
}
43
.media > .pull-right {
44
45
46
47
48
49
50
51
52
53
54
  margin-left: 10px;
}


// Media list variation
// -------------------------

// Undo default ul/ol styles
.media-list {
  margin-left: 0;
  list-style: none;
55
}