diff options
Diffstat (limited to 'theme/stylesheets/website')
-rwxr-xr-x | theme/stylesheets/website/header.less | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/theme/stylesheets/website/header.less b/theme/stylesheets/website/header.less index 9c6d9ca..f22bb1e 100755 --- a/theme/stylesheets/website/header.less +++ b/theme/stylesheets/website/header.less @@ -33,13 +33,15 @@ h1 { margin: 0px; font-size: 20px; + font-weight: 200; text-align: center; line-height: @header-height; - display: none; + opacity: 0; + .transition(opacity ease 0.4s); padding-left: 200px; padding-right: 200px; - .transition(margin-left 0.5s ease); + .transition(opacity 0.2s ease); overflow: hidden; text-overflow: ellipsis; @@ -58,6 +60,12 @@ display: none; } } + + &:hover { + h1 { + opacity: 1; + } + } } &.is-loading { |