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

_tag.scss « components « css « assets - github.com/vaga/hugo-theme-m10c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0655a4a2aff25f2bc70b146fda98e2b0b125c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.tag {
  display: inline-block;
  margin-right: 0.2em;
  padding: 0 0.6em;
  font-size: 0.9em;
  border-radius: 0.2em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.8s;

  &:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}