15 lines
270 B
SCSS
Executable File
15 lines
270 B
SCSS
Executable File
//
|
|
// _list-group.scss
|
|
//
|
|
|
|
@each $color,
|
|
$value in $theme-colors {
|
|
.list-group-item-#{$color} {
|
|
color: shade-color($value, 5%);
|
|
background-color: rgba($value, .15);
|
|
|
|
.alert-link {
|
|
color: shade-color($value, 20%);
|
|
}
|
|
}
|
|
} |