Compare commits

..

No commits in common. "f54a4edf2038251602e5838ec84263db4c0a7469" and "da24e36530c4d8344fe43ded7464af9d34929b9e" have entirely different histories.

3 changed files with 62 additions and 106 deletions

View File

@ -44,17 +44,3 @@ body {
color: $color-body; color: $color-body;
background-color: $background-color; background-color: $background-color;
} }
h1,
h2,
h3,
h4,
h5,
h6 {
@include font-title();
}
a,
button {
@include font-link();
}

View File

@ -41,8 +41,10 @@
line-height: 1.5; line-height: 1.5;
} }
a { /* Make images easier to work with */
text-decoration: none; img {
max-width: 100%;
display: block;
} }
/* Inherit fonts for inputs and buttons */ /* Inherit fonts for inputs and buttons */
@ -53,16 +55,10 @@
font: inherit; font: inherit;
} }
/* Make images easier to work with */
img {
max-width: 100%;
display: block;
/* Blur images when they have no alt attribute */ /* Blur images when they have no alt attribute */
&:not([alt]) { img:not([alt]) {
filter: blur(10px); filter: blur(10px);
} }
}
/* Remove all animations and transitions for people that prefer not to see them */ /* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) { @media (prefers-reduced-motion: reduce) {
@ -73,5 +69,3 @@
scroll-behavior: auto !important; scroll-behavior: auto !important;
} }
} }

View File

@ -3,27 +3,3 @@
@import "typography"; @import "typography";
@import "base"; @import "base";
@import "layout"; @import "layout";
.h1 {
@extend h1;
}
.h2 {
@extend h2;
}
.h3 {
@extend h3;
}
.h4 {
@extend h4;
}
.h5 {
@extend h5;
}
.h6 {
@extend h6;
}