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