You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GHHub/index.html

27 lines
925 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Global Highlights Hub</title>
<style>
.loading{width:150px;height:8px;border-radius:4px;margin:0 auto;margin-top:200px;position:relative;background:#777;overflow:hidden}
.loading span{display:block;width:100%;height:100%;border-radius:3px;background:#00b96b;animation:changePosition 4s linear infinite}
@keyframes changePosition{
0%{-webkit-transform:translate(-150px)}
50%{-webkit-transform:translate(0)}
100%{-webkit-transform:translate(150px)}
}
</style>
</head>
<body>
<div id="root">
<div class="loading">
<span></span>
</div>
</div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>