summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/spa/popup.html
blob: 34d1d019c21e2f4e9df259d4f8fac59cb37ae278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <style>
      html {
        font-family: sans-serif; /* 1 */
      }
      body {
        margin: 0;
      }
    </style>
    <style>
      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>

    <link rel="stylesheet" type="text/css" href="popupEntryPoint.dev.css" />
    <script type="module" src="popupEntryPoint.dev.js"></script>
  </head>

  <body>
    <taler-popup id="container" class="popup-container"></taler-popup>
  </body>
</html>