add some basic styling to the entire site

This commit is contained in:
Brian S. Stephan 2020-03-07 16:33:47 -06:00
parent 04145e92f8
commit b2d34bf658
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
html {
font-family: sans-serif;
padding: 0 1em;
}
h1,h2,h3,h4,h5,h6 {
color: #811610;
}
footer {
display: block;
font-size: 75%;
color: #999;
}

View File

@ -1,5 +1,6 @@
<!doctype html>
<title>{{ title }}{% if title %} - {% endif %}incorporeal.org</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<section class="content">
{{ content }}
</section>