blob: 624b4d9d0f4be63101ef32160e93f30402ecde17 [file] [log] [blame] [edit]
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Perfetto UI</title>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<link rel="shortcut icon" id="favicon" type="image/png" href="/assets/favicon.png">
<link rel="stylesheet" href="/assets/perfetto.scss">
</head>
<body>
<div id="app_load">
<div id="app_load_spinner"></div>
</div>
<style>
#app_load { position: absolute; top: 0; left: 0; right:0; bottom: 0; background-color: #2c3e50;}
#app_load_spinner { margin: 30vh auto; width: 150px; height: 150px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: app_load_spin 1s ease-in-out infinite; }
@keyframes app_load_spin { to { transform: rotate(360deg); } }
</style>
<script type="module" src="/frontend/index.ts"></script>
</body>
</html>