diff options
author | MayteApolix <83069108+MayteApolix@users.noreply.github.com> | 2022-01-17 01:39:02 +0100 |
---|---|---|
committer | MayteApolix <83069108+MayteApolix@users.noreply.github.com> | 2022-01-17 01:39:02 +0100 |
commit | 2e1d8be55aafa91d7559499ad9ca315dac408ae2 (patch) | |
tree | 5948a7e054d383a9d8a9610a97ac264aab2b4956 | |
parent | 3a95d7b7fc65c73e3f1b47f931aa98522a7294eb (diff) | |
parent | 0324345646225edb2b3ea18ef4f9dbe00d8c24cf (diff) |
Merge branch 'main' of https://github.com/MayteSteeghs/draughts
-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); +} |