Finally, A New Font!
Roundabout is a brand new, hand drawn font that comes in three variations.
It’s free for personal use and commercial licensing is available for $15.
Roundabout is a brand new, hand drawn font that comes in three variations.
It’s free for personal use and commercial licensing is available for $15.
Creative Market has some pretty great stuff going on right now.
First, the Dreamy Watercolors and Summer Vibes illustrations pictured above are free goods this week.
Second, as is maybe obvious just looking at this blog, I’m very into this article on Abstract Illustrations in Web Design and the accompanying products.
So go visit!
Design Bundles is currently giving away maybe the best freebie ever. A set of patterns made up of cats in bow ties and hats and glasses. The free goods there reset on Fridays so go get it before 01/12/18.
Trying to stay in the holiday spirit with my font suggestion, so here’s Xmas Sweater Stitch by Chequered Ink. I’ve seen a few knit sweater looking fonts but what really sets this one apart is the extra Christmas shapes you get in the symbols.
Download at dafont.
Back to some fonts. Scandilover is a cool handwritten font by Katsia Jazwinska. The demo is available for free and the full version is up on Creative Market. Seems good for winter/Christmas/etc. projects.
Download at dafont.
I’ve been trying to be more accessibility conscious lately (not on this site yet though so don’t start inspecting too deeply here) and there are a lot of good resources to get started:
Question from annihilistantichrist-blog:
There is a way! In your Theme Options, you should see fields labeled “Mobile Base Font Size” and “Desktop Base Font Size” with default settings 100% and 125%. If you change those, all of the font sizes on the page will scale down proportionally. The “Mobile Base Font Size” handles the font size when the browser window is below 768px wide and you can use %, px, or em values.
So I was trying to figure out a design bug that could only be recreated in the Chrome browser on an iPhone and it was kind of a hassle. Safari on iOS and the Chrome DevTools emulator looked fine so they were no help. Xcode’s simulator and remote debugging only work with Safari so they were out too. I know there are other resources you can either pay for or take the time to install that might get the job done but I really only needed to test a couple lines of CSS.
I remembered from years back that Firebug Lite could run on any browser or mobile device but it’s actually a little heavy and hard to use on a small screen. But — looking it up — I had the epiphany that if you know JavaScript there’s no reason you can’t just make your own bookmarklet for debugging. This might be totally obvious but it took a while to occur to me so there you go.
If you want to do a really quick styling update, all you need is something like this (note: this is not the issue I was trying to fix):
javascript:(function () {
var el = document.querySelector('body');
el.style.color = '#fff';
el.style.backgroundColor = '#000';
})();
Or, if you want to insert an external file:
javascript:(function () {
var src = 'path/to/styles.css';
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = src;
document.head.appendChild(link);
})();
Then you just open Chrome and create a dummy bookmark, select edit, and replace the URL field with your JavaScript. You can also rename the bookmark to something more accurate if you want.
For more information, TutsPlus has a useful tutorial on creating bookmarklets.
Really nice, super detailed CSS illustrations of phones, laptops, etc. Could come in handy.