summaryrefslogtreecommitdiff
path: root/posts.css
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-12-23 12:20:58 -0500
committermattkae <mattkae@protonmail.com>2022-12-23 12:20:58 -0500
commit4ac5e377a8ff514180082d92b38369a920ef02d1 (patch)
treeaaca942855069bd2aeb709dcd9e1000132d99f43 /posts.css
parente8504a410ae7aaabcfb63d72681537c854d34e02 (diff)
parent3d9cec63ca208d8e2fde49cfaaa5508f8b1dcf09 (diff)
Merge branch 'master' into feature/winter_2022
Diffstat (limited to 'posts.css')
-rw-r--r--posts.css24
1 files changed, 19 insertions, 5 deletions
diff --git a/posts.css b/posts.css
index e9e5abc..f07381c 100644
--- a/posts.css
+++ b/posts.css
@@ -1,20 +1,34 @@
#tag_list {
- width: 100%;
+ width: 65%;
display: grid;
+ margin: auto;
grid-template-columns: repeat(3, 1fr);
column-gap: 8px;
- row-gap: 8px
+ row-gap: 16px
+}
+
+@media (max-width: 767.98px) {
+ #tag_list {
+ width: 100%;
+ }
}
-#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 {