Add Form Styling, Improve Footer, Further divide content in "outer-content"

- Logo font-family
This commit is contained in:
Xevion
2022-03-26 20:15:44 -05:00
parent 19e582f72e
commit 5a640bc404
4 changed files with 73 additions and 11 deletions

View File

@@ -4,14 +4,17 @@
<meta charset="UTF-8">
<title>Runnerspace</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
</head>
<body>
<div id="content">
{% include 'layouts/header.html' %}
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
{% include 'layouts/footer.html' %}
</div>
<div class="content-outer">
<div class="content">
{% include 'layouts/header.html' %}
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
</div>
{% include 'layouts/footer.html' %}
</div>
</body>
</html>