Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
unb-pretty / modules / links.styl
Size: Mime:
// ############################################################################
// 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;
    }
}