mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
17 lines
280 B
CSS
17 lines
280 B
CSS
|
|
/* class for text with a 'link' appearance */
|
|
.text-link
|
|
{
|
|
color : #666699;
|
|
text-decoration : underline;
|
|
}
|
|
|
|
.text-link:hover
|
|
{
|
|
color : #333366;
|
|
}
|
|
|
|
.text-link:hover:active
|
|
{
|
|
color : #990000;
|
|
} |