Browse Source

make small, small, space headerlinks, and hide it if not hovered over

main
John-Mark Gurney 3 years ago
parent
commit
487039f4ea
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      content/media/css/custom.css

+ 15
- 0
content/media/css/custom.css View File

@@ -1,3 +1,18 @@
.small {
font-size: 80%;
}

a.headerlink {
/* give some space to para links */
margin-left: .2em;
/* hide until hover */
display: none;
}

*:hover > .headerlink {
display: unset;
}

ul.tags {
list-style-type: none;
}


Loading…
Cancel
Save