12345678910111213141516171819 |
- ;﷽
- ;((foo (:and a .title (:or :active :hover)) (:or span div)):color blue)
- ((:and a (:or :hover :visited :focus :link))
- :text-decoration none)
- (a
- :text-decoration solid)
- ((:and a :visited)
- :text-decoration groove)
- ;(a:link
- ; :text-style italics)
- ((:and a :focus)
- :border none)
- ;https://shinmera.github.io/LASS/#selectors
- ;a:hover,a:visited,a:focus,a:link{text-decoration:none;}
|