summaryrefslogtreecommitdiff
path: root/static/global.css
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-20 18:20:42 +0100
committerLinnnus <[email protected]>2024-03-20 18:20:42 +0100
commite40ce7849e97a1e0295fb07072d95041b60ec72a (patch)
tree9392bcc828dd943128c2dfe2536b0ea66dab9a50 /static/global.css
parent227bb3801b7ba58a2343c8067fd5937be1fb87aa (diff)
Rename static/{global => base}.css
Now the name of the css file `static/XXX.css` matches the HTML/template file in `views/XXX.html`.
Diffstat (limited to 'static/global.css')
-rw-r--r--static/global.css54
1 files changed, 0 insertions, 54 deletions
diff --git a/static/global.css b/static/global.css
deleted file mode 100644
index 5625968..0000000
--- a/static/global.css
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * This file will contain the styles that are to be applied to the WHOLE site.
- *
- * No page-specific settings should go in this file.
- */
-
-* {
- box-sizing: border-box;
-}
-
-html, body {
- padding: 0;
- margin: 0;
-}
-
-/* Sticky footer
- * See: https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Sticky_footers
- */
-body {
- min-height: 100vh;
- display: grid;
- grid-template-rows: auto 1fr auto;
-}
-
-.navbar {
- padding: 1.5rem;
- background-color: #eee;
-
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
-}
-
-.navbar__links {
- list-style: none;
- padding: 0;
-
- display: flex;
- flex-direction: row;
- gap: 1.5em;
-}
-
-.navbar__links__item {
- /* remove default link styling */
- color: inherit;
- text-decoration: none;
-}
-
-footer {
- text-align: center;
- font-size: small;
- margin: 1rem;
-}