aboutsummaryrefslogtreecommitdiffstats
path: root/static/proxy.html
blob: 6464215259eeaa437db925887b9603aa18d0790b (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0"
    />
    <title>Document</title>
    <style>
      html {
        background: var(--bg, #23222b);
        color: var(--fg, #dedede);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
          Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
          sans-serif;
      }
      iframe {
        border: 0px none #0000;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
      }
    </style>
    <script src="/proxy.js"></script>
  </head>
  <body></body>
</html>