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 • 310 B
ASCII text
        
            
1
:any-link {
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 {
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 {
18
color: var(--color-link-active-text);
19
}