Site Skeleton

This commit is contained in:
2019-09-05 14:38:10 +02:00
parent 62f9eaf019
commit 9185f3cf63
136 changed files with 91634 additions and 0 deletions

15
mdb/scss/free/_badges.scss Executable file
View File

@ -0,0 +1,15 @@
// Badges
.badge {
color: $white !important;
border-radius: $border-radius-base;
box-shadow: $z-depth-1;
}
.badge-pill {
padding-right: $badge-pill-padding-x;
padding-left: $badge-pill-padding-x;
border-radius: $badge-pill-border-radius;
}
@each $name, $color in $basic-mdb-colors {
@include make-badge($name, $color);
}