logopage.xhtml 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  3. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
  4. ]>
  5. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  6. - License, v. 2.0. If a copy of the MPL was not distributed with this
  7. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <title></title>
  11. <style type="text/css">
  12. body {
  13. background: #eee;
  14. color: black;
  15. }
  16. img {
  17. text-align: center;
  18. position: absolute;
  19. margin: auto;
  20. top: 0;
  21. right: 0;
  22. bottom: 0;
  23. left: 0;
  24. opacity: 0.2;
  25. }
  26. @media(-moz-dark-theme) {
  27. body {
  28. background: #2E3B41;
  29. color: #eee;
  30. }
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <img src="about:logo" alt=""/>
  36. </body>
  37. </html>