help: Split CSS styling into a separate file

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
This commit is contained in:
Sunil Mohan Adapa 2020-12-17 17:09:06 -08:00 committed by Veiko Aasa
parent ccefd98135
commit 0e09d08d17
No known key found for this signature in database
GPG Key ID: 478539CAE680674E
2 changed files with 14 additions and 9 deletions

View File

@ -0,0 +1,12 @@
/*
# SPDX-License-Identifier: AGPL-3.0-or-later
*/
dd {
margin-left: 1.875rem;
}
.pdf {
float: right;
margin: 2rem 0;
}

View File

@ -7,15 +7,8 @@
{% load static %}
{% block page_head %}
<style type="text/css">
dd {
margin-left: 1.875rem;
}
.pdf {
float: right;
margin: 2rem 0;
}
</style>
<link type="text/css" rel="stylesheet"
href="{% static 'help/help.css' %}"/>
{% endblock %}
{% block content %}