summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-05-30 13:39:28 +0200
committerWynn Wolf Arbor2020-05-31 20:53:54 +0200
commit9a3f442dfbe090849a616959d6396d5e2675b8c4 (patch)
tree1f51a52e2853697be48df73eeb2f28eec578e6a0
parent6a38b5c1ca630e17f3a79c94582b23ee3587e5cf (diff)
downloadsite-9a3f442dfbe090849a616959d6396d5e2675b8c4.tar.gz
css: Improve styling of the horizontal rule element
This element has not been used before at all, but the upcoming post will be including it it in the footnotes block. Use a more fitting double-border style instead of the questionable design from the initial commit.
-rw-r--r--scss/style.scss5
1 files changed, 2 insertions, 3 deletions
diff --git a/scss/style.scss b/scss/style.scss
index 530e043..90bd606 100644
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -134,9 +134,8 @@ article {
}
hr {
- border: 0;
- border-top: 1px dashed grey;
- width: 80%;
+ border: none;
+ border-top: 3px double darkgrey;
}
ul { list-style: square; }