By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 links.css

View raw Download
text/plain • 641 B
ASCII text
        
            
1
:any-link, .link-button {
2
color: var(--color-link-text);
3
}
4
5
:any-link:visited {
6
color: var(--color-link-visited-text);
7
}
8
9
:any-link:hover, .link-button:hover {
10
color: var(--color-link-hover-text);
11
}
12
13
:any-link:visited:hover {
14
color: var(--color-link-hover-text);
15
}
16
17
:any-link:active, .link-button:active {
18
color: var(--color-link-active-text);
19
}
20
21
.link-button {
22
padding: 0;
23
margin: 0;
24
background: transparent !important;
25
text-transform: none !important;
26
box-shadow: none !important;
27
display: inline;
28
border-radius: 0 !important;
29
height: fit-content;
30
min-height: 0;
31
font: inherit;
32
}