imio-publik-themes/static/welkenraedt/_custom.scss

32 lines
757 B
SCSS

@charset "UTF-8";
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}
/* Text links */
/* unvisited link */
.comment-field a:not(.pk-button),
.textcell a:not(.pk-button) {
color: $primary-color;
border-bottom: 1px solid;
}
/* visited link */
.comment-field a:not(.pk-button):visited,
.textcell a:not(.pk-button):visited {
color: desaturate($primary-color, 6%);
}
/* mouse over link */
.comment-field a:not(.pk-button):hover,
.textcell a:not(.pk-button):hover {
color: $welkenraedt-green;
border-bottom: 0;
text-decoration: none;
}
/* selected link */
.comment-field a:not(.pk-button):active,
.textcell a:not(.pk-button):active {
color: darken($primary-color, 15%);
}