Skip to content

Instantly share code, notes, and snippets.

@romanejaquez
Created August 18, 2020 04:15
Show Gist options
  • Save romanejaquez/c6807460f8c619152c3dea6685145bea to your computer and use it in GitHub Desktop.
Save romanejaquez/c6807460f8c619152c3dea6685145bea to your computer and use it in GitHub Desktop.
.app-splash-screen {
background: #d1367d;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
z-index: 100;
transition: left 0.5s;
}
.app-label {
margin-top: 32px;
color: #fff;
font-size: 2.5em;
font-family: "Pacifico", cursive;
}
.app-splash-inner {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.app-logo {
background: url("./../../assets/lighty.svg");
background-repeat: no-repeat;
max-width: 100%;
background-position: center;
background-size: contain;
width: 100px;
height: 100px;
}
.app-loader {
background: url("./../../assets/three-dots.svg");
background-repeat: no-repeat;
max-width: 100%;
background-position: center;
background-size: contain;
width: 80px;
height: 80px;
margin-top: 80px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment