Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_anchorforid.css « css « assets « gohugoioTheme « themes « docs - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab59428543afe340596c2815d6e080607cd1839f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

.header-link:after {
  position: relative;
  left: 0.5em;
  opacity: 0;
  font-size: 0.8em;
  -moz-transition: opacity 0.2s ease-in-out 0.1s;
  -ms-transition: opacity 0.2s ease-in-out 0.1s;
}
h2:hover .header-link,
h3:hover .header-link,
h4:hover .header-link,
h5:hover .header-link,
h6:hover .header-link {
  opacity: 1;
}