diff options
author | mattkae <mattkae@protonmail.com> | 2022-12-14 21:21:37 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-12-14 21:21:37 -0500 |
commit | 3bf3164c369a10a755166c1e45b8be9c22f1a3be (patch) | |
tree | 4018bd3e2e37e1d49396eb50818a332eeb54fd9f | |
parent | ac5a69c5bdff67e67991ac5fdfae39f2d2f157d3 (diff) |
Updated the tag buttons stlyling
-rw-r--r-- | posts.css | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -4,7 +4,7 @@ margin: auto; grid-template-columns: repeat(3, 1fr); column-gap: 8px; - row-gap: 8px + row-gap: 16px } @media (max-width: 767.98px) { @@ -13,15 +13,22 @@ } } -#tag_list button { - padding: 16px; +#tag_list button { + padding: 12px 0px; cursor: pointer; border: 1px solid transparent; border-radius: 3px; font-family: inherit; - font-size: 16px; + font-size: 14px; width: 100%; height: 100%; + color: black; + background-color: transparent; + border: 2px solid black; +} + +#tag_list button:hover { + background-color: lightgray; } #post_list { |