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.

34 lines
733 B

  1. {% extends "base.html" %}
  2. {% set active_page = "handbook" %}
  3. {% block title %}ACKS Handbook{% endblock %}
  4. {% block content %}
  5. <div class="uk-flex uk-flex-center uk-margin-bottom uk-margin-top">
  6. <h1 class="uk-text-center"><strong>Adventurer Conqueror King</strong>Handbook</h1>
  7. </div>
  8. <div id="frame-container">
  9. <iframe id="handbook-frame" src="https://atr0phy.net/acks/handbook"></iframe>
  10. </div>
  11. {% endblock %}
  12. {% block head %}
  13. <style>
  14. #frame-container {
  15. display: flex;
  16. width: 100%;
  17. height: 85vh;
  18. flex-direction: column:
  19. }
  20. #handbook-frame {
  21. flex-grow: 1;
  22. border: none;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. h1 strong {
  27. display: block;
  28. font-size: 50%;
  29. opacity: 0.65;
  30. }
  31. </style>
  32. {% endblock %}