spee.ch/client/scss/_link.scss

21 lines
334 B
SCSS
Raw Normal View History

2018-05-31 00:00:09 +02:00
a, a:visited {
text-decoration: none;
}
.link--primary, .link--primary:visited {
2018-11-09 01:44:59 +01:00
color: $primary-color;
&:hover { text-decoration: underline; }
2018-05-31 00:00:09 +02:00
}
.link--nav {
2018-11-09 01:44:59 +01:00
color: $text-color;
2018-05-31 00:00:09 +02:00
border-bottom: 2px solid white;
&:hover {
2018-11-09 01:44:59 +01:00
color: $primary-color;
}
}
2018-11-09 01:44:59 +01:00
.link--nav-active {
border-bottom: 2px solid $primary-color;
}