aboutsummaryrefslogtreecommitdiff
path: root/src/components/Navbar.css
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-02 01:35:01 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-02 01:35:01 -0500
commit9735f3bd1d8f823402814116464f1e3ae344e3e9 (patch)
tree757686863b5a04ce45688896af48236e3aa0ad27 /src/components/Navbar.css
parenta0485ad26353a08562c13c14ea9de73fd705f9de (diff)
downloadpersonal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.tar.gz
personal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.tar.bz2
personal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.zip
Starting to take shape
Diffstat (limited to 'src/components/Navbar.css')
-rw-r--r--src/components/Navbar.css32
1 files changed, 31 insertions, 1 deletions
diff --git a/src/components/Navbar.css b/src/components/Navbar.css
index d92fbbc..5987d16 100644
--- a/src/components/Navbar.css
+++ b/src/components/Navbar.css
@@ -1,3 +1,33 @@
nav {
- text-align: center;
+ font-weight: 300;
+ padding-top: 20px;
+ padding-bottom: 30px;
+}
+ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+}
+
+li {
+ margin: 0 1rem;
+}
+
+a {
+ font-size: 1.2rem;
+ text-decoration: none;
+ color: #FFFFFF;
+}
+
+a:hover {
+ font-weight: 500;
+ color: #9ECD9D;
+ transition: ease-in-out 0.1s;
+}
+
+a:active {
+ color: #609460;
}