1html, body { 2 height: 100%; 3 @include fontFamily; 4 font-size: 16px; 5 font-weight: 400; 6 color: $black; 7} 8 9p { 10 margin-bottom: .8em; 11 transition: margin .05s; 12} 13 14a, button.link { 15 color: $links; 16 text-decoration: none; 17 font-weight: 700; 18 &:visited { 19 color: lighten($links, 5%); 20 } 21 &:hover { 22 text-decoration: underline; 23 cursor: pointer; 24 } 25 :focus { 26 color: $links; 27 } 28} 29 30button.link { 31 padding-left: .3em; 32 padding-right: .3em; 33}