Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

nickfrez / unb-pretty   js

Repository URL to install this package:

/ modules / links.styl

// ############################################################################
// Links
// ############################################################################
//
// Hyperlink styles.
//


$link--no-outline {
    &,
    &:visited {
        outline: none;
    }
}


$link--no-underline {
    text-decoration: none;
}


$link--unstyled {
    @extends $link--no-outline;
    @extends $link--no-underline;
}




// TODO(nick): Remove this?  It's probably too specific.
//
$link--dark {
    text-decoration: none;
    color: $color.font.primary.text;

    &:hover,
    &:active,
    &:visited {
        color: $color.font.primary.text;
    }
}