Ability to display tips in the loading screen

This commit is contained in:
yflory
2017-03-06 17:20:09 +01:00
parent 77d09f64e1
commit d93a270336
4 changed files with 71 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
.cryptofist {
margin-left: auto;
margin-right: auto;
height: 300px;
@media screen and (max-height: @media-short-screen) {
display: none;
}
@@ -28,4 +29,21 @@
}
}
}
.cp #loadingTip {
position: fixed;
z-index: 99999;
top: 80%;
left: 0;
right: 0;
text-align: center;
span {
background-color: @bg-loading;
color: @color-loading;
text-align: center;
font-size: 1.5em;
opacity: 0.7;
font-family: lato, Helvetica, sans-serif;
padding: 15px;
max-width: 60%;
}
}