moar styleguide

This commit is contained in:
2017-08-06 21:20:25 -05:00
committed by Mark Moser
parent 6f7f5b8836
commit 36d0108e73
8 changed files with 119 additions and 105 deletions

View File

@ -1,6 +1,8 @@
html,
body {
@include font-default;
background-color: $light;
color: $black;
}
.h1,
@ -57,11 +59,19 @@ p {
line-height: 1.4;
}
// a {
// &:visited { }
// &:hover { }
// &:active { }
// }
a {
&,
&:visited {
text-decoration: underline;
color: $blue;
}
&:hover,
&:active {
text-decoration: underline;
color: $dark-blue;
}
}
.small {
@include font-roboto;
@ -75,7 +85,11 @@ code {
@include font-mono;
display: block;
margin: $gutter;
background-color: $dark-grey;
padding: 0 0 $gutter;
width: auto;
line-height: 1.35;
white-space: pre;
color: $light;
font-size: 18px;
}