33 lines
764 B
HTML
33 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="/dist/walletEntryPoint.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/font/import.css" />
|
|
<link rel="icon" href="/static/img/icon.png" />
|
|
<script src="/dist/walletEntryPoint.js"></script>
|
|
<style>
|
|
html {
|
|
font-family: sans-serif; /* 1 */
|
|
}
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
input {
|
|
font: inherit;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-size: 100%;
|
|
padding: 0;
|
|
background-color: #f8faf7;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container" class="wallet-container"></div>
|
|
</body>
|
|
</html>
|