2017-10-18 10:20:40 +00:00
|
|
|
// http://ionicframework.com/docs/theming/
|
|
|
|
|
|
|
|
|
|
|
|
// App Global Sass
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Put style rules here that you want to apply globally. These
|
|
|
|
// styles are for the entire app and not just one component.
|
|
|
|
// Additionally, this file can be also used as an entry point
|
|
|
|
// to import other Sass files to be included in the output CSS.
|
|
|
|
//
|
|
|
|
// Shared Sass variables, which can be used to adjust Ionic's
|
|
|
|
// default Sass variables, belong in "theme/variables.scss".
|
|
|
|
//
|
|
|
|
// To declare rules for a specific mode, create a child rule
|
|
|
|
// for the .md, .ios, or .wp mode classes. The mode class is
|
|
|
|
// automatically applied to the <body> element in the app.
|
2017-11-21 15:35:41 +00:00
|
|
|
|
|
|
|
|
2017-11-24 11:31:09 +00:00
|
|
|
// Alignment
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.text-left { text-align: left; }
|
|
|
|
.text-right { text-align: right; }
|
|
|
|
.text-center { text-align: center; }
|
|
|
|
|
2017-11-21 15:35:41 +00:00
|
|
|
/**
|
|
|
|
* App Branding
|
|
|
|
*/
|
|
|
|
.mm-bglogo {
|
|
|
|
background-color: $mm-color-init-screen; /* Change this to add a bg image or change color */
|
|
|
|
background: -webkit-radial-gradient($mm-color-init-screen-alt, $mm-color-init-screen);
|
|
|
|
background: radial-gradient($mm-color-init-screen-alt, $mm-color-init-screen);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: table;
|
|
|
|
|
|
|
|
.mm-logo {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: $mm-init-screen-logo-width;
|
|
|
|
max-width: $mm-init-screen-logo-max-width;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner circle {
|
|
|
|
stroke: $mm-init-screen-spinner-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-24 11:31:09 +00:00
|
|
|
|
|
|
|
@media only screen and (min-width: 430px) {
|
|
|
|
.mm-center-view .scroll-content {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 600px;
|
|
|
|
display: table !important;
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
.mm-view-content {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|