[Django #7] Tutorial 6

This commit is contained in:
kjg 2020-07-15 22:22:40 +09:00
parent 440a372221
commit 0f04c0771d
4 changed files with 12 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -0,0 +1,8 @@
li a {
color: green;
}
body {
#background-position: center center;
background: white url("images/background2.png") no-repeat fixed center center;
}

View File

@ -1,3 +1,7 @@
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}