28 lines
330 B
SCSS
28 lines
330 B
SCSS
a:link {
|
|
color: $link_color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: $link_color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: $link_hover_color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:active {
|
|
color: $link_color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.active {
|
|
font-weight: bold;
|
|
}
|
|
|
|
a.login {
|
|
font-weight: bold;
|
|
color: #e00;
|
|
} |