mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
335 lines
4.7 KiB
SCSS
335 lines
4.7 KiB
SCSS
|
|
// Globals
|
|
// --------------------------------------------------
|
|
@import "../../themes/ionic.globals";
|
|
|
|
|
|
// Normalize
|
|
// --------------------------------------------------
|
|
@import "../../themes/normalize";
|
|
|
|
|
|
// Util
|
|
// --------------------------------------------------
|
|
@import "../../themes/util";
|
|
|
|
|
|
// App
|
|
// --------------------------------------------------
|
|
// All font sizes use rem units
|
|
// By default, 1rem equals 10px. For example, 1.4rem === 14px
|
|
// $font-size-root value, which is on the <html> element
|
|
// is what can scale all fonts
|
|
|
|
/// @prop - Font size of the root html
|
|
$font-size-root: 62.5% !default;
|
|
|
|
/// @prop - Font weight of all headings
|
|
$headings-font-weight: 500 !default;
|
|
|
|
/// @prop - Line height of all headings
|
|
$headings-line-height: 1.2 !default;
|
|
|
|
/// @prop - Font size of heading level 1
|
|
$h1-font-size: 2.6rem !default;
|
|
|
|
/// @prop - Font size of heading level 2
|
|
$h2-font-size: 2.4rem !default;
|
|
|
|
/// @prop - Font size of heading level 3
|
|
$h3-font-size: 2.2rem !default;
|
|
|
|
/// @prop - Font size of heading level 4
|
|
$h4-font-size: 2rem !default;
|
|
|
|
/// @prop - Font size of heading level 5
|
|
$h5-font-size: 1.8rem !default;
|
|
|
|
/// @prop - Font size of heading level 6
|
|
$h6-font-size: 1.6rem !default;
|
|
|
|
|
|
// App Structure
|
|
// --------------------------------------------------
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-touch-callout: none;
|
|
}
|
|
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
font-size: $font-size-root;
|
|
|
|
text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
position: fixed;
|
|
overflow: hidden;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
-ms-content-zooming: none;
|
|
touch-action: manipulation;
|
|
|
|
word-wrap: break-word;
|
|
|
|
text-size-adjust: none;
|
|
user-select: none;
|
|
}
|
|
|
|
|
|
// App Typography
|
|
// --------------------------------------------------
|
|
|
|
a {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.enable-hover a:hover {
|
|
opacity: .7;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin-top: 1.6rem;
|
|
margin-bottom: 1rem;
|
|
|
|
font-weight: $headings-font-weight;
|
|
line-height: $headings-line-height;
|
|
}
|
|
|
|
[padding] {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
&:first-child {
|
|
margin-top: -.3rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
h1 + h2,
|
|
h1 + h3,
|
|
h2 + h3 {
|
|
margin-top: -.3rem;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 2rem;
|
|
|
|
font-size: $h1-font-size;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 1.8rem;
|
|
|
|
font-size: $h2-font-size;
|
|
}
|
|
|
|
h3 {
|
|
font-size: $h3-font-size;
|
|
}
|
|
|
|
h4 {
|
|
font-size: $h4-font-size;
|
|
}
|
|
|
|
h5 {
|
|
font-size: $h5-font-size;
|
|
}
|
|
|
|
h6 {
|
|
font-size: $h6-font-size;
|
|
}
|
|
|
|
small {
|
|
font-size: 75%;
|
|
}
|
|
|
|
sub,
|
|
sup {
|
|
position: relative;
|
|
|
|
font-size: 75%;
|
|
line-height: 0;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
sup {
|
|
top: -.5em;
|
|
}
|
|
|
|
sub {
|
|
bottom: -.25em;
|
|
}
|
|
|
|
|
|
// Nav Container Structure
|
|
// --------------------------------------------------
|
|
|
|
ion-app,
|
|
ion-nav,
|
|
ion-tab,
|
|
ion-tabs,
|
|
.app-root {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: $z-index-page-container;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
ion-nav,
|
|
ion-tab,
|
|
ion-tabs {
|
|
overflow: hidden;
|
|
}
|
|
|
|
ion-tab {
|
|
display: none;
|
|
}
|
|
|
|
ion-tab.show-tab {
|
|
display: block;
|
|
}
|
|
|
|
ion-app,
|
|
ion-nav,
|
|
ion-tab,
|
|
ion-tabs,
|
|
.app-root,
|
|
.ion-page {
|
|
contain: strict;
|
|
}
|
|
|
|
|
|
// Page Container Structure
|
|
// --------------------------------------------------
|
|
|
|
.ion-page {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
// do not show, but still render so we can get dimensions
|
|
opacity: 0;
|
|
}
|
|
|
|
.ion-page.show-page {
|
|
// show the page now that it's ready
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
// Toolbar Container Structure
|
|
// --------------------------------------------------
|
|
|
|
ion-header {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: $z-index-toolbar;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
ion-footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: $z-index-toolbar;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
// Misc
|
|
// --------------------------------------------------
|
|
|
|
[app-viewport],
|
|
[overlay-portal],
|
|
[nav-viewport],
|
|
[tab-portal],
|
|
.nav-decor {
|
|
display: none;
|
|
}
|
|
|
|
|
|
// Text Alignment
|
|
// --------------------------------------------------
|
|
|
|
[text-left] {
|
|
text-align: left;
|
|
}
|
|
|
|
[text-center] {
|
|
text-align: center;
|
|
}
|
|
|
|
[text-right] {
|
|
text-align: right;
|
|
}
|
|
|
|
[text-justify] {
|
|
text-align: justify;
|
|
}
|
|
|
|
[text-nowrap] {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[text-wrap] {
|
|
white-space: normal;
|
|
}
|
|
|
|
|
|
// Text Transformation
|
|
// --------------------------------------------------
|
|
|
|
[text-uppercase] {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
[text-lowercase] {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
[text-capitalize] {
|
|
text-transform: capitalize;
|
|
}
|