Switch to SCSS syntax to resolve abiguous syntax issues in SASS

This commit is contained in:
M. George Hansen 2016-11-04 15:33:06 -07:00
parent 18b3ded470
commit 6b055b90c6
22 changed files with 365 additions and 252 deletions

14
src/_links.scss Normal file
View file

@ -0,0 +1,14 @@
/**
* 1. Fully reset link styling.
* 2. Remove gray background color from active links in IE 10
* (from normalize.css).
*/
a {
color: inherit; /* 1 */
text-decoration: none; /* 1 */
background-color: transparent; /* 2 */
&:link, &:active, &:visited {
color: inherit; /* 1 */
}
}