Commit 16b73a14 authored by KaoruSawade's avatar KaoruSawade

implemented project-wide basic CSS styling

parent 05e7655e
h2{
font-family: "Courier New";
}
h3{
font-family: "Courier New";
color: #43ca5a;
}
p{
font-family: "Courier New";
}
body{
color: white;
background-color: #171717;
}
a:link {
font-family: "Courier New";
text-decoration: none;
color: #43ca5a;
}
a:visited {
color: #43ca5a;
}
a:hover {
color: #005b0f;
}
\ No newline at end of file
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
{% load static %}
<link rel="stylesheet" href="{% static '/style.css' %}">
<title>{% block title %}Bookshelf{% endblock %}</title>
{% block styles %}{% endblock %}
</head>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment