36 lines
494 B
SCSS
36 lines
494 B
SCSS
|
/* LINKS */
|
||
|
|
||
|
a, a:visited {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.link--primary, .link--primary:visited {
|
||
|
color: #4156C5;
|
||
|
}
|
||
|
|
||
|
.link--secondary, .link--secondary:visited {
|
||
|
font-size: medium;
|
||
|
margin: 0px;
|
||
|
padding: 0.3em;
|
||
|
color: #9b9b9b;
|
||
|
}
|
||
|
|
||
|
.link--disabled-text {
|
||
|
color: #9b9b9b;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.link--nav {
|
||
|
color: black;
|
||
|
border-bottom: 2px solid white;
|
||
|
}
|
||
|
|
||
|
.link--nav:hover {
|
||
|
color: #4156C5;
|
||
|
}
|
||
|
|
||
|
.link--nav-active {
|
||
|
color: #4156C5;
|
||
|
border-bottom: 2px solid #4156C5;
|
||
|
}
|