diff options
author | r <r@freesoftwareextremist.com> | 2019-12-19 15:24:33 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-19 15:24:33 +0000 |
commit | ebd6636167f2868ec6b8174ff2ead185ed4ab1e1 (patch) | |
tree | 3611ca8b100820fb23e6e42a856b655277a28c67 /static | |
parent | 6e02be73b5ccdd14c4e62952aa2229abad0efb40 (diff) | |
download | bloat-ebd6636167f2868ec6b8174ff2ead185ed4ab1e1.tar.gz bloat-ebd6636167f2868ec6b8174ff2ead185ed4ab1e1.zip |
Use css :target to highlight current post
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/static/main.css b/static/main.css index 7f8cd90..3ad86e8 100644 --- a/static/main.css +++ b/static/main.css @@ -1,5 +1,11 @@ .status-container-container { margin: 16px 0; + padding: 0 4px; + border-left: 4px solid transparent; +} + +.status-container-container:target { + border-color: #777777; } .status-container { @@ -145,8 +151,8 @@ } .notification-container { - margin: 4px 0; - padding: 4px 4px; + margin: 16px 0; + padding: 0 4px; border-left: 4px solid transparent; } |