From 4d1c45ed0aa6c1928d5e48023ea2470eb7d07177 Mon Sep 17 00:00:00 2001 From: Michael Neeley Date: Fri, 8 Aug 2025 13:03:27 -0400 Subject: [PATCH] footer list bullet points --- static/styles.css | 10 ++++++++++ templates/base.html | 21 +++++++++++---------- 2 files changed, 21 insertions(+), 10 deletions(-) create mode 100644 static/styles.css diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..0d66a9c --- /dev/null +++ b/static/styles.css @@ -0,0 +1,10 @@ +footer ul, +footer ol { + list-style: none; + padding-left: 0; + margin-left: 0; +} + +footer li { + list-style: none; +} diff --git a/templates/base.html b/templates/base.html index 9c5d996..c70ee81 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,6 +8,10 @@ rel="stylesheet" href="{{ url_for('static', filename='pico.min.css') }}" /> + {% block title %}{% endblock %} {% block extra_head %}{% endblock %} @@ -25,18 +29,15 @@
{% block content %}{% endblock %}
{% block extra_scripts %}{% endblock %}