fixing base line-height and big/small abuse

This commit is contained in:
Kris Aubuchon 2014-12-17 14:51:47 -05:00
parent c17b111b6d
commit bcb03474d6
2 changed files with 6 additions and 4 deletions

View File

@ -12,13 +12,16 @@
} }
big { big {
font-size: 2em; font-size: 28px;
} }
small { small {
font-size: 0.714em; font-size: 9px;
} }
//setting a static limit on big and small prevents nesting abuse
blockquote { blockquote {
background-color: scale-color-diff(); background-color: scale-color-diff();
border-left: 5px solid darken(scale-color-diff(), 10%); border-left: 5px solid darken(scale-color-diff(), 10%);

View File

@ -9,8 +9,7 @@ html {
color: $primary; color: $primary;
font-family: $base-font-family; font-family: $base-font-family;
font-size: $base-font-size; font-size: $base-font-size;
// font: #{$base-font-size}/#{$base-line-height} $base-font-family; line-height: $base-line-height;
// this does not work, see https://meta.discourse.org/t/x/23193/11
background-color: $secondary; background-color: $secondary;
overflow-y: scroll; overflow-y: scroll;
} }