aboutsummaryrefslogtreecommitdiffstats
path: root/pages/logging.html
blob: 9d20d5d706b9724099f2aac2a329ee17575de49a (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
<html>
  <head>
    <title>Vimium Logging</title>
    <script src="content_script_loader.js"></script>
    <style type="text/css">
      body {
        font: 14px "DejaVu Sans", "Arial", sans-serif;
        color: #303942;
        margin: 0 auto;
      }
      div#wrapper {
        margin: 0px 35px;
        width: calc(100% - 70px);
      }
      header {
        font-size: 18px;
        font-weight: normal;
        border-bottom: 1px solid #eee;
        padding: 20px 0 15px 0;
        width: 100%;
      }
      #log-text {
        width: 100%;
        height: 80%;
      }
    </style>
  </head>

  <body>
    <div id="wrapper">
      <header>Vimium Log</header>
      <br />
      <textarea id="log-text" readonly></textarea>
      <br />
    </div>
  </body>
</html>