breadcrumbs.html 534 B

12345678910111213141516171819202122232425
  1. {%- extends "sphinx_rtd_theme/breadcrumbs.html" %}
  2. {% block breadcrumbs_aside %}
  3. {% if not meta or meta.get('github_url') != 'hide' %}
  4. {{ super() }}
  5. <style>
  6. .godot-edit-guidelines {
  7. font-size: 14px;
  8. float: right;
  9. clear: both;
  10. }
  11. @media screen and (max-width: 480px) {
  12. .godot-edit-guidelines {
  13. display: none;
  14. }
  15. }
  16. </style>
  17. <a class="godot-edit-guidelines" href="https://docs.godotengine.org/en/latest/community/contributing/index.html#writing-documentation">
  18. Learn how to contribute!
  19. </a>
  20. {% endif %}
  21. {% endblock %}