diff options
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; +} + |