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: 8bf628ac7a64dde64e437d4a1df9bfb7ad71f45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.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: color 0.35s, background 0.35s;

  &:hover {
    transition: color 0.25s, background 0.05s;
    background: rgba(255, 255, 255, 0.3);
  }
}