Compare commits
3 Commits
e23e8b5d4f
...
9fdf0d5d2d
Author | SHA1 | Date |
---|---|---|
Ray Elliott | 9fdf0d5d2d | |
Ray Elliott | 1aa4e09998 | |
Ray Elliott | 7c39c15491 |
|
@ -62,25 +62,25 @@ h6 {
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
margin-bottom: 1.6rem;
|
@include margin-b(1);
|
||||||
@include font-title(semi-bold);
|
@include font-title(semi-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
margin-bottom: 1.6rem;
|
@include margin-b(1);
|
||||||
@include font-title(semi-bold);
|
@include font-title(semi-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
margin-bottom: 1.6rem;
|
@include margin-b(1);
|
||||||
@include font-title(semi-bold);
|
@include font-title(semi-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
h4, h5, h6 {
|
h4, h5, h6 {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
margin-bottom: 0.8rem;
|
@include margin-b(0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
|
@ -97,7 +97,7 @@ h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-bottom: 1.6rem;
|
@include margin-b(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
|
|
|
@ -38,6 +38,11 @@
|
||||||
@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
|
||||||
|
|
Loading…
Reference in New Issue