Page 19

I’ve been pretty into bright, abstract designs lately so I’m all about these geometric posters and shapes that are free right now (week of 04/17/17) on Creative Market.

Get it.

Web Site Color Resources

I just finished a major redesign of this site and one of the most agonizing aspects for me was trying to pick an appropriate color scheme. It was a lot tougher than I expected to get the right tone, complement my fonts, and generally avoid clashing. Here’s a list of sites and articles that were particularly helpful:

A Simple Web Developer’s Guide To Color (Smashing Magazine) - This article pointed out simple things I hadn’t even thought of like how to match your grays to your base colors.

Coolors - A really handy color scheme generator. I really like the simplicity of it’s design.

Trendy Web Color Palettes and Material Design Color Schemes & Tools (Awwwards) - An article that analyzes Awwwards Site of the Day winner color palettes and includes a number of color resources itself.

Adobe Color CC - There are a few options to help you pick colors with a color wheel but I found Adobe’s easiest to use.

Pinterest - For me, Pinterest might have actually been the most useful site. Click through to see everything I saved to my color palettes board.

It’s a new font!

Sewing Patterns 3 is the latest in the Sewing Patterns series. This time it’s all vintage menswear.

You can try it out for personal use for free or get commercial licensing right here.

More Free Seamless Backgrounds

Working on more font sample images so here are more seamless backgrounds. This time the font is Paper Hearts so the patterns are — unsurprisingly — heart themed. Might come in handy in about a month.

The files are in PNG format and include transparent versions as well. Use them however you like.

Download here.

Advertisement
Advertisement

Animated Drawer with Fixed, Variable Height Header

This is a fairly common request in my office: slide in animated drawers with fixed headers and scrollable bodies. Also, the content in the headers is constantly changing so both the body and header heights need to adapt.

Before flexbox, this was kind of a nightmare. Absolute positioning doesn’t play particularly nice with transforms. Multiple classes to set multiple heights seems like overkill. So does using JavaScript just to get this layout.

But with flexbox, it can be done in basically four lines (eight with prefixes). Use a flexbox column display for the drawer itself:

.drawer {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

And set the drawer body to grow and scroll:

.drawer-body {
    -webkit-box-flex: 2;
    flex-grow: 2;
    overflow-y: auto;
}

That’s all it takes. Here’s a Pen that also includes the code for animating on and off the page.

See the Pen Animated Drawer with Fixed, Variable Height Header by Lauren Ashpole (@laurenashpole) on CodePen.

Font Update: Hellmuth Beveled!

The Hellmuth font family now includes a stackable option perfect for creating a quick beveled text effect.

You can try it out for free personal use or get a commercial license here.

Well this is free on Creative Market right now and super cute.