diff options
-rw-r--r-- | draughts/public/stylesheets/game.css | 22 |
1 files changed, 22 insertions, 0 deletions
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); +} |