- finished up most
- providing two options for featured items, one is awful
- some mobile issues, but main issue was font-weight.
- Bold fonts were not originally included
- Only semi-bold, and their @font-face declarations had not font-weight settings. Suggested rework here.
- working on responsive type and overlapping items in the home hero.
- worked on some vertical text by transform rotating and absolute positioning.
- updated my h1 textures for a better fallback, made an data URI so the image is more likely to load, made a default backup, and switch back to transparent inside @supports.
.heading--texture {
background-image: url($grit-text-black);
background-color: $text;
background-position: center center;
background-clip: text;
@supports (-webkit-text-fill-color: transparent) {
-webkit-text-fill-color: transparent;
background-color: transparent;
}
}