add some custom styling

This commit is contained in:
Frédéric Péters 2014-03-24 20:10:09 +01:00
parent ef83708db9
commit 490120a007
5 changed files with 10 additions and 0 deletions

View File

@ -87,6 +87,10 @@ TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'hobo', 'templates'),
)
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'hobo', 'static'),
)
LOCALE_PATHS = (
os.path.join(BASE_DIR, 'hobo', 'locale'),
)

View File

@ -0,0 +1,2 @@
li#settings a { background-image: url(../img/icon-settings.png); }
li#settings a:hover { background-image: url(../img/icon-settings-hover.png); }

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 B

View File

@ -2,3 +2,7 @@
{% block page-title %}Portail admin{% endblock %}
{% block site-title %}Portail admin{% endblock %}
{% block footer %}Portail admin — Copyright © Entr'ouvert{% endblock %}
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css"/>
{% endblock %}