bsw/jbe@1309: /** bsw/jbe@1309: * Copyright 2015 Google Inc. All Rights Reserved. bsw/jbe@1309: * bsw/jbe@1309: * Licensed under the Apache License, Version 2.0 (the "License"); bsw/jbe@1309: * you may not use this file except in compliance with the License. bsw/jbe@1309: * You may obtain a copy of the License at bsw/jbe@1309: * bsw/jbe@1309: * http://www.apache.org/licenses/LICENSE-2.0 bsw/jbe@1309: * bsw/jbe@1309: * Unless required by applicable law or agreed to in writing, software bsw/jbe@1309: * distributed under the License is distributed on an "AS IS" BASIS, bsw/jbe@1309: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. bsw/jbe@1309: * See the License for the specific language governing permissions and bsw/jbe@1309: * limitations under the License. bsw/jbe@1309: */ bsw/jbe@1309: bsw/jbe@1309: @import "../variables"; bsw/jbe@1309: bsw/jbe@1309: .mdl-card { bsw/jbe@1309: display: flex; bsw/jbe@1309: flex-direction: column; bsw/jbe@1309: font-size: $card-font-size; bsw/jbe@1309: font-weight: 400; bsw/jbe@1309: min-height: $card-height; bsw/jbe@1309: overflow: hidden; bsw/jbe@1309: width: $card-width; bsw/jbe@1309: z-index: $card-z-index; bsw/jbe@1309: position: relative; bsw/jbe@1309: background: $card-background-color; bsw/jbe@1309: border-radius: 2px; bsw/jbe@1309: box-sizing: border-box; bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__media { bsw/jbe@1309: background-color: $card-image-placeholder-color; bsw/jbe@1309: background-repeat: repeat; bsw/jbe@1309: background-position: 50% 50%; bsw/jbe@1309: background-size: cover; bsw/jbe@1309: background-origin: padding-box; bsw/jbe@1309: background-attachment: scroll; bsw/jbe@1309: box-sizing: border-box; bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__title { bsw/jbe@1309: align-items: center; bsw/jbe@1309: color: $card-text-color; bsw/jbe@1309: display: block; bsw/jbe@1309: display: flex; bsw/jbe@1309: justify-content: stretch; bsw/jbe@1309: line-height: normal; bsw/jbe@1309: padding: $card-vertical-padding $card-horizontal-padding; bsw/jbe@1309: perspective-origin: $card-title-perspective-origin-x $card-title-perspective-origin-y; bsw/jbe@1309: transform-origin: $card-title-transform-origin-x $card-title-transform-origin-y; bsw/jbe@1309: box-sizing: border-box; bsw/jbe@1309: bsw/jbe@1309: &.mdl-card--border { bsw/jbe@1309: border-bottom: 1px solid $card-border-color; bsw/jbe@1309: } bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__title-text { bsw/jbe@1309: align-self: flex-end; bsw/jbe@1309: color: inherit; bsw/jbe@1309: display: block; bsw/jbe@1309: display: flex; bsw/jbe@1309: font-size: $card-title-font-size; bsw/jbe@1309: font-weight: $card-title-text-font-weight; bsw/jbe@1309: line-height: normal; bsw/jbe@1309: overflow: hidden; bsw/jbe@1309: transform-origin: $card-title-text-transform-origin-x $card-title-text-transform-origin-y; bsw/jbe@1309: margin: 0; bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__subtitle-text { bsw/jbe@1309: font-size: $card-subtitle-font-size; bsw/jbe@1309: color: $card-subtitle-color; bsw/jbe@1309: margin: 0; bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__supporting-text { bsw/jbe@1309: color: $card-supporting-text-text-color; bsw/jbe@1309: font-size: $card-supporting-text-font-size; bsw/jbe@1309: line-height: $card-supporting-text-line-height; bsw/jbe@1309: overflow: hidden; bsw/jbe@1309: padding: $card-vertical-padding $card-horizontal-padding; bsw/jbe@1309: width: 90%; bsw/jbe@1309: bsw/jbe@1309: &.mdl-card--border { bsw/jbe@1309: border-bottom: 1px solid $card-border-color; bsw/jbe@1309: } bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card__actions { bsw/jbe@1309: font-size: $card-actions-font-size; bsw/jbe@1309: line-height: normal; bsw/jbe@1309: width: 100%; bsw/jbe@1309: background-color: rgba(0,0,0,0); bsw/jbe@1309: padding: 8px; bsw/jbe@1309: box-sizing: border-box; bsw/jbe@1309: bsw/jbe@1309: &.mdl-card--border { bsw/jbe@1309: border-top: 1px solid $card-border-color; bsw/jbe@1309: } bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: .mdl-card--expand { bsw/jbe@1309: flex-grow: 1; bsw/jbe@1309: } bsw/jbe@1309: bsw/jbe@1309: bsw/jbe@1309: .mdl-card__menu { bsw/jbe@1309: position: absolute; bsw/jbe@1309: right: 16px; bsw/jbe@1309: top: 16px; bsw/jbe@1309: }