40 lines
694 B
SCSS
40 lines
694 B
SCSS
|
// Space list items
|
||
|
|
||
|
.list-group-space {
|
||
|
.list-group-item {
|
||
|
margin-bottom: 1.5rem;
|
||
|
@include border-radius($list-group-border-radius);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// List group components
|
||
|
|
||
|
.list-group-img {
|
||
|
width: 3rem;
|
||
|
height: 3rem;
|
||
|
border-radius: 50%;
|
||
|
vertical-align: top;
|
||
|
margin: -.1rem 1.2rem 0 -.2rem;
|
||
|
}
|
||
|
.list-group-content {
|
||
|
-webkit-box-flex: 1;
|
||
|
-ms-flex: 1;
|
||
|
flex: 1;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
.list-group-content > p {
|
||
|
color: $gray-500;
|
||
|
line-height: 1.5;
|
||
|
margin: .2rem 0 0;
|
||
|
}
|
||
|
.list-group-heading {
|
||
|
font-size: $font-size-base;
|
||
|
color: $gray-800;
|
||
|
}
|
||
|
.list-group-heading > small {
|
||
|
float: right;
|
||
|
color: $gray-500;
|
||
|
font-weight: 500;
|
||
|
}
|