Files
habitica/website/client/assets/scss/loading-screen.scss
Keith Holliday e7fd2b4c79 [WIP] Added initial inapp loading screen with tips (#9710)
* Added initial inapp loading screen with tips

* Added new tips and styles

* Removed unrelated readme
2017-12-14 09:35:10 -06:00

36 lines
493 B
SCSS

#loading-screen, #loading-screen-inapp {
z-index: 1050;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: $purple-100;
color: $white;
font-size: 16px;
line-height: 1.5;
}
@keyframes fadeColor {
0% {
opacity: 0.48;
}
50% {
opacity: 1.0;
}
100% {
opacity: 0.48;
}
}
#melior {
animation: fadeColor 2.4s infinite;
height: 4rem;
margin-left: -1rem;
}