Jeremy Worboys
Jeremy Worboys
Media queries are appended in the order they are found in the file. **This could cause an issue in the following scenario:** ``` css .selector-1 { color: blue; } @media...
It's been a fair few year since I have used Python (back in the 2.6 days) so my apologies if this is poor quality code. This fixes #9 that I...
Any chance of getting support for [PSR-4](https://github.com/php-fig/fig-standards/blob/master/proposed/psr-4-autoloader/psr-4-autoloader.md)? I imagine this will add a level of complexity as you will now need to interpret composer.json for the root namespace.
The following test fails. ``` js var input = $(''); input.is(':disabled').should.be.false; input.attr('disabled', true); input.is(':disabled').should.be.true; ```
Thanks for this excellent solution to fluid grids. I am implementing it in my current project and came across the need for full width cells. I have modified the code...