Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rightscale-design/designkit-links

A Sass module for CSS links at RightScale.
https://github.com/rightscale-design/designkit-links

Last synced: 10 days ago
JSON representation

A Sass module for CSS links at RightScale.

Awesome Lists containing this project

README

        

# Designkit Links
Sass module for CSS links at RightScale.

## Install

```bash
npm i designkit-links
```

## Usage

```html
This is a link
```

## The CSS

```css
a {
text-decoration: none;
transition: color .15s ease-in;
color: #0A83F6;
}

a:link, a:visited {
transition: color .15s ease-in;
}

a:hover {
transition: color .15s ease-in;
color: #0769c6;
}

a:active {
transition: color .15s ease-in;
}

a:focus {
transition: color .15s ease-in;
}
```

## Author

Jason Melgoza

## License

MIT