diff --git a/requirements.txt b/requirements.txt index 772fdf1..8c6100c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ Django==1.6.6 south==0.8.4 +django-bootstrap3==4.11.0 diff --git a/settings.py b/settings.py index 95bd4bd..051ae45 100644 --- a/settings.py +++ b/settings.py @@ -29,6 +29,7 @@ 'django.contrib.messages', 'django.contrib.staticfiles', 'south', + 'bootstrap3', 'core', ) @@ -64,6 +65,7 @@ USE_TZ = True -TEMPLATE_DIRS = "templates" +TEMPLATE_DIRS = ("templates",) +STATICFILES_DIRS = ("static",) STATIC_URL = '/static/' diff --git a/static/finetooth.css b/static/finetooth.css new file mode 100644 index 0000000..42e42d0 --- /dev/null +++ b/static/finetooth.css @@ -0,0 +1,10 @@ +#brand { + font-family: 'Italianno', cursive; + font-size: 60px; + margin-right: 50px; + text-decoration: none; +} +#brand a:link { text-decoration: none; color: #000000; } +#brand a:visited { text-decoration: none; color: #000000; } +#brand a:hover { text-decoration: none; color: #0000DD; } +#brand a:active { text-decoration: none; color: #DD0000; } diff --git a/templates/base.html b/templates/base.html index b1861ba..50c4b8d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,11 +1,31 @@ +{% load bootstrap3 %} +
+ {% bootstrap_css %} + +