mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
45 lines
630 B
SCSS
45 lines
630 B
SCSS
@import "../../../globals.ios";
|
|
|
|
// iOS Content
|
|
// --------------------------------------------------
|
|
|
|
$outer-content-md-background-color: #efeff4 !default;
|
|
|
|
|
|
body,
|
|
ion-content {
|
|
background-color: $background-ios-color;
|
|
}
|
|
|
|
a {
|
|
color: $link-ios-color;
|
|
}
|
|
|
|
.outer-content {
|
|
background: $outer-content-md-background-color;
|
|
}
|
|
|
|
ion-nav.has-views,
|
|
ion-tab.has-views {
|
|
background: #000;
|
|
}
|
|
|
|
@each $color-name, $color-value in $colors {
|
|
h1, h2, h3, h4, h5, h6,
|
|
p,
|
|
span,
|
|
a:not([button]),
|
|
small,
|
|
b,
|
|
i,
|
|
u,
|
|
strong,
|
|
em,
|
|
sub,
|
|
sup {
|
|
&[#{$color-name}] {
|
|
color: $color-value !important;
|
|
}
|
|
}
|
|
}
|