Files @ 05198edf8286
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Make FAQ entry done in dt look better with CSS.

This is accomplished by three key changes:

* use em rather than px sizes, so that font changes are accomodated.

* Add a margin to the dt.

* center the text in the dt's rather than right align.
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()