mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-06 10:20:43 +00:00
- When the base font size is changed, all the measure will scale appropriately. - Bootstrap 4 has done the same. - Keep using px for responsive lengths and some border widths that need not scale. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
29 lines
570 B
HTML
29 lines
570 B
HTML
{% extends 'help_base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block page_head %}
|
|
<style type="text/css">
|
|
dd {
|
|
margin-left: 1.875rem;
|
|
}
|
|
.pdf {
|
|
float: right;
|
|
margin: 2rem 0;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<a href="{% url 'help:download-manual' %}" class="btn btn-default pdf"
|
|
role="button">
|
|
<span class="fa fa-download fa-fw fa-lg"></span>
|
|
{% trans 'Download as PDF' %}
|
|
</a>
|
|
{{ content|safe }}
|
|
{% endblock %}
|