summaryrefslogtreecommitdiff
path: root/public/css/modules/link.css
blob: 005c82e77ded9ece6ee90937f985be0d569bd16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.link {
  color: var(--special-text-color);
  text-decoration: underline;
  text-decoration-color: var(--special-text-color);
  border: dotted transparent 2px;
  border-radius: 0.375rem;
  transition:
    text-decoration-color 300ms,
    color 300ms,
    border-color 300ms,
    font-weight 300ms;
}

.link:hover, .group-hover:hover .link {
  text-decoration-color: transparent;
}

.link:focus {
  border-color: var(--special-text-color);
}

.link:active {
  font-weight: 700;
  color: var(--special-text-highlight-color);
}