This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
UTPass-Website/mdb/scss/free/_cards.scss
2019-09-15 13:19:29 +02:00

34 lines
580 B
SCSS

// 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;
}
}
}