Initial commit

This commit is contained in:
2023-11-10 15:57:52 +01:00
commit eb87e1912f
351 changed files with 51965 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
// 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;
}