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

33
mdb/scss/free/_cards.scss Executable file
View File

@ -0,0 +1,33 @@
// Cards
.card {
font-weight: 400;
border: 0;
box-shadow: $z-depth-1;
&[class*="border"] {
border: 1px solid $grey-base;
box-shadow: none;
}
.card-body {
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
}
.card-title {
a {
transition: $md-card-link-transition;
&:hover {
transition: $md-card-link-transition;
}
}
}
.card-text {
font-size: $md-card-font-size;
font-weight: 400;
color: $md-card-text-color;
}
}
.md-form {
label {
font-weight: 300;
}
}
}