diff options
Diffstat (limited to 'src/css/_partial')
| -rw-r--r-- | src/css/_partial/_post/_content.scss | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/src/css/_partial/_post/_content.scss b/src/css/_partial/_post/_content.scss index 5628664..9e48177 100644 --- a/src/css/_partial/_post/_content.scss +++ b/src/css/_partial/_post/_content.scss @@ -9,6 +9,32 @@      h#{$i} {        font-weight: 400;        font-family: $global-serif-font-family; + +      .anchor { +        float: left; +        line-height: 1; +        margin-left: -20px; +        padding-right: 4px; + +        &:hover { +          border-bottom: initial; +        } + +        .icon-link { +          visibility: hidden; +          font-size: 16px; + +          &:before { +            vertical-align: middle; +          } +        } +      } + +      &:hover { +        .icon-link { +          visibility: visible; +        } +      }      }    } | 
