aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2022-01-17 01:16:45 +0100
committerThomas Voss <thomasvoss@live.com> 2022-01-17 01:16:45 +0100
commit0324345646225edb2b3ea18ef4f9dbe00d8c24cf (patch)
tree2458230efb0108e941a006f49c21edcb5a8d038b
parent699e60cf860aa0651f02c44d498404ee241c7067 (diff)
Add some linez and finish that css 🤙👁️
-rw-r--r--draughts/public/stylesheets/game.css22
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);
+}