From 2001c1ee301d9cc87798e9834e91d973312cbf7f Mon Sep 17 00:00:00 2001 From: Hippo Date: Sat, 3 Aug 2019 20:36:06 +0530 Subject: [PATCH] Added basic topbar --- header.php | 13 +++++++++++++ style.css | 26 ++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/header.php b/header.php index 0c76964..b0e70ce 100644 --- a/header.php +++ b/header.php @@ -22,6 +22,19 @@ itemscope="itemscope" itemtype="http://schema.org/WebPage"> + + + diff --git a/style.css b/style.css index 1c47927..c2e9626 100644 --- a/style.css +++ b/style.css @@ -173,3 +173,29 @@ body::before { .display-posts-listing.image-top .listing-item .excerpt-dash { display: none; } + + +/* Topbar */ +.topbar { + display: block; + margin: 0; + padding: 0; + background: white; + border-bottom: 0.1rem solid lightgrey; +} + +.topbar ul>li { + display: inline; + padding: 0.7rem; + border: 0.2rem dashed rgba(0,0,0,0); +} + +.topbar ul>li:hover { + border: 0.2rem dashed darkgrey; +} + +.topbar a, .topbar a:visited { + color: black; + text-decoration: none; + font-family: "Myriad Pro", Helvetica, Arial, sans-serif; +}