You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB

  1. <!DOCTYPE html>{% load compress static hc_extras %}
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{% block title %}{{ site_name }}{% endblock %}</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
  8. <style>
  9. body {
  10. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  11. text-align: center;
  12. margin: 10em;
  13. }
  14. h1 {
  15. font-weight: 300;
  16. font-size: 30px;
  17. }
  18. input {
  19. display: inline-block;
  20. margin-bottom: 0;
  21. font-weight: normal;
  22. text-align: center;
  23. vertical-align: middle;
  24. touch-action: manipulation;
  25. cursor: pointer;
  26. background-image: none;
  27. border: 1px solid transparent;
  28. white-space: nowrap;
  29. padding: 10px 16px;
  30. font-size: 18px;
  31. line-height: 1.3333333;
  32. border-radius: 6px;
  33. color: #ffffff;
  34. background-color: #22bc66;
  35. border-color: #1ea65a;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. {% block content %}{% endblock %}
  41. </body>
  42. </html>