wallet-core/packages/taler-wallet-webextension/static/popup.html

41 lines
889 B
HTML
Raw Normal View History

2016-11-13 23:30:18 +01:00
<!DOCTYPE html>
<html>
2020-03-30 12:39:32 +02:00
<head>
<meta charset="utf-8" />
2021-10-12 20:18:29 +02:00
<style>
html {
font-family: sans-serif; /* 1 */
}
body {
margin: 0;
}
</style>
<style>
2021-10-12 20:18:29 +02:00
html {
}
h1 {
font-size: 2em;
}
input {
font: inherit;
}
body {
margin: 0;
font-size: 100%;
padding: 0;
overflow: hidden;
background-color: #f8faf7;
font-family: Arial, Helvetica, sans-serif;
}
</style>
2021-08-23 21:51:49 +02:00
<link rel="stylesheet" type="text/css" href="/dist/popupEntryPoint.css" />
<link rel="stylesheet" type="text/css" href="/static/font/import.css" />
2020-08-13 20:43:51 +02:00
<link rel="icon" href="/static/img/icon.png" />
2021-06-16 22:01:06 +02:00
<script src="/dist/popupEntryPoint.js"></script>
2020-03-30 12:39:32 +02:00
</head>
2016-11-13 23:30:18 +01:00
2020-03-30 12:39:32 +02:00
<body>
<taler-popup id="container" class="popup-container"></taler-popup>
2020-03-30 12:39:32 +02:00
</body>
2016-11-13 23:30:18 +01:00
</html>