diff options
-rw-r--r-- | pyc/templates/base.html | 7 | ||||
-rw-r--r-- | pyc/templates/submit.html | 2 | ||||
-rw-r--r-- | static/style.css | 3 |
3 files changed, 7 insertions, 5 deletions
diff --git a/pyc/templates/base.html b/pyc/templates/base.html index 370f8d7..857e9c6 100644 --- a/pyc/templates/base.html +++ b/pyc/templates/base.html @@ -3,7 +3,8 @@ <head> <meta charset="UTF-8"> <title>pyc</title> - <link href="/static/style.css" rel="stylesheet" type="text/css" charset="utf8"> + <link href="/static/style.css" rel="stylesheet" type="text/css"> + <link href="http://fonts.googleapis.com/css?family=Play" rel="stylesheet" type="text/css"> </head> <body> <div id="wrap"> @@ -16,12 +17,12 @@ <div class="nav"> <a href="{% url grader.views.index %}">Home</a> - <p>Labs: + <p>Labs:</p> <ol> {% for lab in labs %} <li><a href="/lab/{{ lab.id }}/">{{ lab.name }}</a></li> {% endfor %} - </ol></p> + </ol> <a href="{% url grader.views.faq %}">FAQ</a> </div> diff --git a/pyc/templates/submit.html b/pyc/templates/submit.html index 112df4b..4b76ff7 100644 --- a/pyc/templates/submit.html +++ b/pyc/templates/submit.html @@ -13,7 +13,7 @@ <p> <form method="POST" enctype="multipart/form-data"> {{ form }} -<input type="submit"> +<br><input type="submit"> {% csrf_token %} </form> </p> diff --git a/static/style.css b/static/style.css index 395dfd1..7050809 100644 --- a/static/style.css +++ b/static/style.css @@ -1,6 +1,7 @@ body { background-color: #000; color: #eee; + font-family: 'Play', serif; } a, a:visited, a:active { @@ -55,5 +56,5 @@ table#lab { input { background-color: #111; color: #eee; - border: 1 solid #eee; + border: 1px solid #eee; } |