mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
40 lines
837 B
SCSS
40 lines
837 B
SCSS
|
|
// iOS Card
|
|
// --------------------------------------------------
|
|
|
|
$card-ios-background-color: #fff !default;
|
|
$card-ios-box-shadow: 0 1px 2px rgba(0,0,0,.3) !default;
|
|
$card-ios-border-radius: 2px !default;
|
|
$card-ios-font-size: 1.4rem !default;
|
|
$card-ios-item-content-padding: 15px !default;
|
|
|
|
.platform-ios .card {
|
|
background: $card-ios-background-color;
|
|
box-shadow: $card-ios-box-shadow;
|
|
border-radius: $card-ios-border-radius;
|
|
font-size: $card-ios-font-size;
|
|
|
|
.item,
|
|
.item-content {
|
|
padding: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.item:last-of-type .item-content:after {
|
|
background: transparent;
|
|
}
|
|
|
|
.card-header {
|
|
font-size: 1.7rem;
|
|
}
|
|
|
|
.card-footer {
|
|
color: #6d6d72;
|
|
}
|
|
|
|
.item-content {
|
|
padding: $card-ios-item-content-padding
|
|
}
|
|
|
|
}
|