From f3b5621af14646a44a6182fd30f171968b95f86a Mon Sep 17 00:00:00 2001 From: andresmonc Date: Wed, 8 May 2024 21:36:54 -0500 Subject: [PATCH] remove link underline --- src/styles.css | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/styles.css b/src/styles.css index baf0eec..47ff32c 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,9 +1,25 @@ /* You can add global styles to this file, and also import other style files */ body { - font-family: "Open Sans",sans-serif; + font-family: "Open Sans", sans-serif; } .its-blue { - background-color: #1e6eb8; + background-color: #1e6eb8; color: white; +} + +a:link { + text-decoration: none; +} + +a:visited { + text-decoration: none; +} + +a:hover { + text-decoration: none; +} + +a:active { + text-decoration: none; } \ No newline at end of file