From 0324345646225edb2b3ea18ef4f9dbe00d8c24cf Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 17 Jan 2022 01:16:45 +0100 Subject: Add some linez and finish that css 🤙👁️ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- draughts/public/stylesheets/game.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/draughts/public/stylesheets/game.css b/draughts/public/stylesheets/game.css index e1dc996..9a2227b 100644 --- a/draughts/public/stylesheets/game.css +++ b/draughts/public/stylesheets/game.css @@ -211,3 +211,25 @@ body > div { cursor: click; background-color: grey; } + +/* Adds line under title */ +#history-title::after { + display: block; + content: ""; + align-content: left; + border-top: .4rem solid black; + width: 16rem; + margin: 0 0.2rem; + transform: translateY(-1.3rem); +} + +/* Adds line above title */ +#history-title::before { + display: block; + content: ""; + align-content: left; + border-top: .4rem solid black; + width: 18.4rem; + margin: 0 0.2rem; + transform: translateY(1.3rem); +} -- cgit v1.2.3