Static files
-
Customize your app’s look and feel
/* polls/static/polls/style.css */ li a { color: green; }
<!-- polls/templates/polls/index.html --> {% load static %} <link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
-
Adding a background-image
/* polls/static/polls/style.css */ body { background: white url("images/background.gif") no-repeat; }