diff --git a/static/styles.scss b/static/styles.scss index c0508c3..1445d43 100644 --- a/static/styles.scss +++ b/static/styles.scss @@ -16,6 +16,7 @@ body, html { color: #ef7900; font-size: 2.5em; letter-spacing: -2.8px; + font-family: "Arial Rounded MT Bold", sans-serif; } .header-primary { @@ -43,6 +44,18 @@ body, html { } } +a { + color: #1E40AF; +} + +nav a { + color: white; +} + +footer a { + color: #1E40AF; +} + nav, footer { .links { margin: 0; @@ -59,6 +72,11 @@ nav, footer { } } +footer { + font-size: 60%; + text-align: center; +} + footer .links { font-size: 0.875em; margin: 16px 0 5px 0; @@ -76,3 +94,32 @@ nav, footer { color: black; } } + +.form-subtext { + text-align: center; + font-size: 1em; +} + +form { + margin: 0 auto; + width: fit-content; + + &.login-form { + border: 1px solid darkblue; + padding: 10px + } + + .field { + padding: 4px; + + .checkbox { + margin-left: auto; + } + } + + button { + border-radius: 0px; + width: 15em; + margin: 0 auto; + } +} diff --git a/templates/layouts/base.html b/templates/layouts/base.html index 0b05985..54fd620 100644 --- a/templates/layouts/base.html +++ b/templates/layouts/base.html @@ -4,14 +4,17 @@ Runnerspace + -
- {% include 'layouts/header.html' %} - {% block content %} - Do not extend base.html directly. - {% endblock content %} - {% include 'layouts/footer.html' %} -
+
+
+ {% include 'layouts/header.html' %} + {% block content %} + Do not extend base.html directly. + {% endblock content %} +
+ {% include 'layouts/footer.html' %} +
diff --git a/templates/layouts/footer.html b/templates/layouts/footer.html index f367f56..17c9e46 100644 --- a/templates/layouts/footer.html +++ b/templates/layouts/footer.html @@ -1,3 +1,15 @@ - + diff --git a/templates/layouts/index.html b/templates/layouts/index.html index cc48cdf..47307ec 100644 --- a/templates/layouts/index.html +++ b/templates/layouts/index.html @@ -1,5 +1,5 @@ {% extends 'layouts/base.html' %} {% block content %} - Hello, World! +
Hello, World!
{% endblock %}