From 0c680f62fa6642b8954ab35ef8205effd23ccef6 Mon Sep 17 00:00:00 2001 From: SwiftCoderJoe Date: Tue, 30 Mar 2021 08:47:06 -0400 Subject: [PATCH] Start navbar work --- index.html | 5 +++++ stylesheet.css | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/index.html b/index.html index 15e3dc6..4dd10de 100644 --- a/index.html +++ b/index.html @@ -17,6 +17,11 @@ + +
diff --git a/stylesheet.css b/stylesheet.css index ce452c1..9be47ca 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -4,6 +4,12 @@ margin: 0px; } +nav { + display: flex; /* What do we hate? Inline display! Why do we hate it? Ghost padding! */ + + background-image: linear-gradient(to right, #ff416c, #ff4b2b); +} + h2 { font-family: "Roboto Mono"; font-size: 500%; @@ -101,6 +107,20 @@ img.avatar { filter: drop-shadow(0 0 7px #dc143c); } +img.logo { + border-radius: 50%; + + margin: 0px; + padding: 10px; +} + +nav a { + color: #eeeeee; + text-decoration: none; + + font-size: 30px; +} + td { padding: 10px; }