aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Navbar.module.css
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-12 16:37:28 -0600
committerParker <contact@pkrm.dev>2024-11-12 16:37:28 -0600
commit3b2258877fcbd211314b153c56273e3a597ad08b (patch)
tree28fddd745f436ab70a9f29ad486d5a6d38b2ebbb /app/src/styles/Navbar.module.css
parent41a21ee0b597d971169d5ce4e19f86a1248dbf96 (diff)
Begin navbar
Diffstat (limited to 'app/src/styles/Navbar.module.css')
-rw-r--r--app/src/styles/Navbar.module.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/styles/Navbar.module.css b/app/src/styles/Navbar.module.css
new file mode 100644
index 0000000..217e4b1
--- /dev/null
+++ b/app/src/styles/Navbar.module.css
@@ -0,0 +1,18 @@
+/* Create the nav and center the span */
+.navbar {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 60px;
+ background-color: #f8f9fa;
+}
+
+/* Create the nav links */
+
+span {
+ font-size: 35px;
+ font-weight: 600;
+ color: #333;
+ text-decoration: none;
+ margin-right: 10px;
+} \ No newline at end of file