Compare commits

..

No commits in common. "9fdf0d5d2d77e3903689b7fda27ab51db40dd598" and "e23e8b5d4fab2c199c436aedcd51343d246d995c" have entirely different histories.

2 changed files with 8 additions and 13 deletions

View File

@ -40,14 +40,14 @@
} }
body { body {
font-size: 100%; font-size: 100%;
line-height: 1.6; line-height: 1.6;
box-sizing: border-box; box-sizing: border-box;
@include font-body; @include font-body;
color: $color-body; color: $color-body;
background-color: $background-color; background-color: $background-color;
} }
h1, h1,
@ -62,25 +62,25 @@ h6 {
h1 { h1 {
font-size: 2em; font-size: 2em;
@include margin-b(1); margin-bottom: 1.6rem;
@include font-title(semi-bold); @include font-title(semi-bold);
} }
h2 { h2 {
font-size: 1.6em; font-size: 1.6em;
@include margin-b(1); margin-bottom: 1.6rem;
@include font-title(semi-bold); @include font-title(semi-bold);
} }
h3 { h3 {
font-size: 1.4em; font-size: 1.4em;
@include margin-b(1); margin-bottom: 1.6rem;
@include font-title(semi-bold); @include font-title(semi-bold);
} }
h4, h5, h6 { h4, h5, h6 {
opacity: 0.8; opacity: 0.8;
@include margin-b(0.5); margin-bottom: 0.8rem;
} }
h4 { h4 {
@ -97,7 +97,7 @@ h6 {
} }
p { p {
@include margin-b(1); margin-bottom: 1.6rem;
} }
a, a,

View File

@ -38,11 +38,6 @@
@include pb($bottom); @include pb($bottom);
} }
@mixin pad-h($left, $right: $left) {
@include pl($left);
@include pr($right);
}
@mixin pad($amount-t, $amount-r: $amount-t, $amount-b: $amount-t, $amount-l: $amount-r) { @mixin pad($amount-t, $amount-r: $amount-t, $amount-b: $amount-t, $amount-l: $amount-r) {
padding: #{$amount-t * $line-height}rem padding: #{$amount-t * $line-height}rem
#{$amount-r * $line-height}rem #{$amount-r * $line-height}rem