4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 09:45:52 +00:00

Add download splash

This commit is contained in:
AlphaX-Projects 2023-04-23 19:28:29 +02:00 committed by GitHub
parent f1cb942816
commit 17f8c0d990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

52
splash/download.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: "Roboto", sans-serif;
background: #0f1a2e;
}
.center {
margin-top: 50%;
transform: translateY(-50%);
width auto;
height: auto;
overflow: hidden;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #03a9f4;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="center">
<div style="display: flex; justify-content: center;">
<div class="loader"></div>
<br>
</div>
<div style="display: flex; justify-content: center;">
<h3 style="color: #c9d2d9;">Downloading... Please Wait...</h3>
</div>
</div>
</body>
</html>