aboutsummaryrefslogtreecommitdiff
path: root/src/styles/Navbar.css
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-03 01:59:18 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-03 01:59:18 -0500
commita7c21128a440eebad4337e90baa95a16afb41a70 (patch)
tree015fa148ceb7a22f22c56b6df9130a9c409bcbfb /src/styles/Navbar.css
parentdd7a71191a9e887624b2c537a00d8f30bab39337 (diff)
downloadpersonal-website-a7c21128a440eebad4337e90baa95a16afb41a70.tar.gz
personal-website-a7c21128a440eebad4337e90baa95a16afb41a70.tar.bz2
personal-website-a7c21128a440eebad4337e90baa95a16afb41a70.zip
More padding; Moved styles to their own folder
Diffstat (limited to 'src/styles/Navbar.css')
-rw-r--r--src/styles/Navbar.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/styles/Navbar.css b/src/styles/Navbar.css
new file mode 100644
index 0000000..8c239e0
--- /dev/null
+++ b/src/styles/Navbar.css
@@ -0,0 +1,34 @@
+nav {
+ font-weight: 300;
+ padding-top: 2vh;
+ padding-bottom: 4.5vh;
+}
+ul.nav-list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+}
+
+li.nav-links {
+ margin: 0 1rem;
+}
+
+
+a.nav-link {
+ font-size: 1.2rem;
+ text-decoration: none;
+ color: #FFFFFF;
+}
+
+a.nav-link:hover {
+ font-weight: 500;
+ color: #9ECD9D;
+ transition: ease-in-out 0.1s;
+}
+
+a.nav-link:active {
+ color: #609460;
+}