From 2994c95cfca1b54e8ec878c03701591122b250d1 Mon Sep 17 00:00:00 2001 From: sweatshirt0 Date: Mon, 20 Feb 2023 16:38:41 -0500 Subject: [PATCH] landing navbar css patch. --- styles/styles.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 styles/styles.css diff --git a/styles/styles.css b/styles/styles.css new file mode 100644 index 0000000..841b5b9 --- /dev/null +++ b/styles/styles.css @@ -0,0 +1,21 @@ +body { + font-family: monospace; +} + +.nav-wrapper { + background-color: blue; + padding: 15px; +} + +.nav-wrapper a { + color: #fff; + text-decoration: none; + margin-left: 15px; + margin-right: 15px; + font-size: 1rem; +} + +.nav-wrapper a:hover { + cursor: pointer; + text-decoration: underline; +}