diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-06-25 11:18:37 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-06-25 11:18:37 +0100 |
commit | f594dd21f6e3d9d6656fd6196b4cc217a6b6e4b5 (patch) | |
tree | 74c7b31a3dbcae929619bccdaa738b95c0bb19dd /assets/css | |
parent | b0323a34de6c421c526fd2aa086c46b61020fcfe (diff) | |
parent | 449af9e0692b034f2779c4c0105cca695a854d3d (diff) |
Merge branch 'gh-pages-1507-add-anchor-links' into gh-pages
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/alaveteli-org.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/assets/css/alaveteli-org.css b/assets/css/alaveteli-org.css index 8cbae7021..47f870b20 100644 --- a/assets/css/alaveteli-org.css +++ b/assets/css/alaveteli-org.css @@ -703,3 +703,22 @@ h3 { clear: both; } .clearfix { *zoom: 1; } + +.header-link { + padding-left: 0.2em; + opacity: 0; + + -webkit-transition: opacity 0.2s ease-in-out 0.1s; + -moz-transition: opacity 0.2s ease-in-out 0.1s; + -ms-transition: opacity 0.2s ease-in-out 0.1s; +} + +h1:hover .header-link, +h2:hover .header-link, +h3:hover .header-link, +h4:hover .header-link, +h5:hover .header-link, +h6:hover .header-link { + opacity: 1; +} + |