forked from EVOgeek/Vmeda.Online
35 lines
1.0 KiB
SCSS
35 lines
1.0 KiB
SCSS
ion-app.app-root page-core-login-init {
|
|
.scroll-content {
|
|
background-color: $core-color-init-screen; /* Change this to add a bg image or change color */
|
|
background: -webkit-radial-gradient($core-color-init-screen-alt, $core-color-init-screen);
|
|
background: radial-gradient($core-color-init-screen-alt, $core-color-init-screen);
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
.core-bglogo {
|
|
position: absolute;
|
|
@include position(0, 0, 0, 0);
|
|
height: 100%;
|
|
width: 100%;
|
|
display: table;
|
|
|
|
.core-logo {
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
img {
|
|
width: $core-init-screen-logo-width;
|
|
max-width: $core-init-screen-logo-max-width;
|
|
display: block;
|
|
margin: 0 auto;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.spinner circle, .spinner line {
|
|
stroke: $core-init-screen-spinner-color;
|
|
}
|
|
}
|
|
}
|