]> git.wh0rd.org - chrome-ext/web-power-switch.git/blob - popup.html
set utf-8 in html files
[chrome-ext/web-power-switch.git] / popup.html
1 <!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. -->
2 <!doctype html>
3 <html>
4
5 <head>
6 <meta charset='utf-8'/>
7 <title>Web Power Switch Manager</title>
8 <script src='common.js'></script>
9 <script src='popup.js'></script>
10 <style>
11 table#buttons {
12 margin: 0px;
13 padding: 0px;
14 border-collapse: collapse;
15 }
16 body {
17 margin: 1px;
18 padding: 0px;
19 font-family: Arial, sans-serif;
20 font-size: smaller;
21 }
22 td {
23 white-space: nowrap;
24 }
25 div#status {
26 white-space: nowrap;
27 }
28 </style>
29 <style media='(prefers-color-scheme: dark)'>
30 html {
31 background-color: black;
32 filter: invert(1);
33 }
34 </style>
35 </head>
36
37 <body>
38 <div id='status'>Loading...</div>
39 <table id='buttons'></table>
40 </body>
41 </html>