diff options
| author | mrmr1993 | 2016-01-30 13:00:53 +0000 |
|---|---|---|
| committer | mrmr1993 | 2016-01-30 13:07:14 +0000 |
| commit | 91fb337c9d92f6291ef42c55c4d29ca35b710203 (patch) | |
| tree | dc3fbc4f3e0dab37c9fbce5dd61ff46cb6c9c8a4 /pages/logging.html | |
| parent | c3373252db73430ec466eb0b81a16a5953975e19 (diff) | |
| download | vimium-91fb337c9d92f6291ef42c55c4d29ca35b710203.tar.bz2 | |
Add a basic log page
Diffstat (limited to 'pages/logging.html')
| -rw-r--r-- | pages/logging.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pages/logging.html b/pages/logging.html new file mode 100644 index 00000000..2de04bce --- /dev/null +++ b/pages/logging.html @@ -0,0 +1,37 @@ +<html> + <head> + <title>Vimium Options</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> |
