Latest Work

Crunch Theory
Crunch Theory
This is a newer design I worked on for a new and upcoming DJ named Crunch Theory. I spent about 4 hours on the design in total, and tried to keep things minimal.

Updates

Finally!

I've finally put my site back online.

Excited?

I Am!

You'll be seeing more posts from me shortly. As I finish my projects area.

Thanks!

HTML/CSS Support for browsers

So, I've been spending a lot of time thinking how to better serve the web.

I'll be editing this post as time goes on, but one of my major ideas is something of the following:

say, for example you have a site you wanna use box-sizing on, but as you know some browsers don't support these features.

Well, a solution is to use things like modernizr. and do something like the following.

html.my-box-sizing-feature-class .my-module-that-uses-box-sizing { @include box-sizing(border-box); padding: 10px; }

.my-module-that-uses-box-sizing { width: 100%; }

this way, when you're falling back it might look a bit ugly when you interact with the elements that needed the padding like inputs, but at least the design looks spot on!