123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!-- -*- coding: utf-8; tab-width: 4; indent-tabs-mode: t -*-
- vim: ts=4 noet ai -->
- <!--
- ScrollMeter - Measure how far you scrolled today
- Copyright © 2016 Desktopd Project
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- @license GPL-3.0+
- -->
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>(panel)</title>
- <link rel="icon" href="/icon64.png"/>
- <link rel="stylesheet" type="text/css" href="chrome://global/skin/in-content/common.css"/>
- <style><![CDATA[
- body {
- padding: 1em;
- }
- h2 {
- text-align: center;
- }
- ]]></style>
- </head>
- <body>
- <h2>ScrollMeter</h2>
- <ul id="domains"></ul>
- <footer>
- <p>Hint: change the unit at <button id="prefButton">Preferences</button></p>
- </footer>
- <script src="panel.js"></script>
- </body>
- </html>
|