This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
blog
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
make small, small, space headerlinks, and hide it if not hovered over
main
John-Mark Gurney
3 years ago
parent
a06d023b49
commit
487039f4ea
1 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
}
Write
Preview
Loading…
Cancel
Save