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