diff options
| author | horus | 2021-03-12 12:59:03 +0100 |
|---|---|---|
| committer | horus | 2021-03-12 12:59:03 +0100 |
| commit | 1ee480d7dcb769bd8ad0603fb96d04db292c97ab (patch) | |
| tree | fb10aefdfe3f71d61374f7a11fbac2ea34e2f2b3 /views/snippets/layout.html | |
| parent | 4545165e784b5be3bf46fea7b241a152282ffe80 (diff) | |
| download | moehring-1ee480d7dcb769bd8ad0603fb96d04db292c97ab.tar.gz | |
Swagify ~
Diffstat (limited to 'views/snippets/layout.html')
| -rw-r--r-- | views/snippets/layout.html | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/views/snippets/layout.html b/views/snippets/layout.html index 416f119..0776b3c 100644 --- a/views/snippets/layout.html +++ b/views/snippets/layout.html @@ -19,6 +19,10 @@ html { width: 100%; } + body { + background-color: #262626; + color: #e1e1e1; + } .main { margin-top: 1rem; font-size: 1.5rem; @@ -44,6 +48,9 @@ .navbar { background-color: #f5f5f5; } + .navbar-brand { + color: #f07206 !important; + } /** * ## Bottom Border Color in Navbar @@ -62,10 +69,30 @@ } .flavor-text { margin-bottom: 2rem; + font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; + font-size: 1.5rem; } .flavor-text > h1 { margin-bottom: 0; } + h1::before { + content: "# "; + } + h1 { + color: #f07206; + font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; + } + .main a { + color: #47ccfb; + text-decoration: underline; + } + .bg-dark { + background-color: #171717 !important; + } + .string { + color: #ddd277; + } + </style> <style> {% block css %} @@ -80,7 +107,7 @@ {% endblock %} </main> -<footer id="footer" class="mt-auto"> +<footer id="footer" class="mt-auto bg-dark"> <div class="container text-right"> {% block footer %} {% endblock %} |
