Use app.css not inlined css

Simpler for us.
This commit is contained in:
Sachi King 2017-05-07 13:11:33 +10:00
parent f8a9416600
commit 781921e022
3 changed files with 2 additions and 6 deletions

View file

@ -1,12 +1,6 @@
{% load pyconau2017_tags %} {% load pyconau2017_tags %}
{% load bootstrap %} {% load bootstrap %}
{% block extra_style %}
<style type="text/css">
.label-required:after { content: ' *'; }
</style>
{% endblock %}
{% if form.non_field_errors %} {% if form.non_field_errors %}
<div class="has-errors"> <div class="has-errors">
{{ form.non_field_errors }} {{ form.non_field_errors }}

View file

@ -15,6 +15,7 @@
{% block styles %} {% block styles %}
<link href="{% static 'css/bootstrap.css' %}" rel="stylesheet"> <link href="{% static 'css/bootstrap.css' %}" rel="stylesheet">
<link href="{% static 'css/app.css' %}" rel="stylesheet">
<link rel="icon" href="{% static 'pyconau2017/images/favicon.png' %}"> <link rel="icon" href="{% static 'pyconau2017/images/favicon.png' %}">
{% block extra_style %}{% endblock %} {% block extra_style %}{% endblock %}

View file

@ -1 +1,2 @@
.label-required:after { content: '*'; } .label-required:after { content: '*'; }
textarea { font-family: Hack, monospace; }