panel.xhtml 1.3 KB

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