logo.html 635 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. html,body {
  5. background: #aaaaaa;
  6. margin: 0;
  7. padding: 0;
  8. font-family: "Helvetica";
  9. font-weight: bold;
  10. font-size: 12pt;
  11. height: 100%;
  12. width: 100%;
  13. }
  14. div.icon {
  15. background: #ffb354;
  16. color: #000000;
  17. font-size: 150pt;
  18. border-radius: 2.5rem;
  19. display: inline-block;
  20. width: 1.3em;
  21. height: 1.3em;
  22. padding: 0;
  23. margin: 0;
  24. line-height: 1.4em;
  25. vertical-align: middle;
  26. text-align: center;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <br><br><br><br><br><br>
  32. <!-- Yes, our logo is a Unicode character. It sort of just turned out that way. -->
  33. <center>
  34. <div class="icon">&#x23c1;</div>
  35. </center>
  36. </body>
  37. </html>