From 0b9ecfa52ba22bd2f4bf3600f972d008583a06d8 Mon Sep 17 00:00:00 2001 From: Ben Liu Date: Sun, 5 Nov 2023 15:15:10 +0700 Subject: [PATCH] Revert "fix(homepage): remove orange title underline" This reverts commit 73239e5f78398cc91960b7c505fffa7d5eb1f7eb. --- homepage/public/css/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/homepage/public/css/style.css b/homepage/public/css/style.css index b99fbc74..8975dde8 100644 --- a/homepage/public/css/style.css +++ b/homepage/public/css/style.css @@ -43,6 +43,9 @@ h5 { justify-content: center; align-items: flex-end; } +.headline h1 { + border-bottom: 1px solid #ef5826; +} a:hover { color: #d83d0a; text-decoration: underline; @@ -532,6 +535,17 @@ h2, display: inline-block; position: relative; } +h2:after, +.line-heading:after { + content: ''; + width: 25px; + height: 1px; + display: inline-block; + position: absolute; + background: #ef5826; + top: 100%; + left: 0; +} .see-more { text-align: center; display: inline-block;