Skip to content

Commit

Permalink
Initial push.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathansmith committed Oct 27, 2012
0 parents commit 647d798
Show file tree
Hide file tree
Showing 38 changed files with 6,601 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.scssc
*.sassc
14 changes: 14 additions & 0 deletions .htaccess
@@ -0,0 +1,14 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
</IfModule>

Options -Indexes

ErrorDocument 400 http://unsemantic.com/
ErrorDocument 401 http://unsemantic.com/
ErrorDocument 403 http://unsemantic.com/
ErrorDocument 404 http://unsemantic.com/
ErrorDocument 500 http://unsemantic.com/
18 changes: 18 additions & 0 deletions README.md
@@ -0,0 +1,18 @@
# Unsemantic CSS Framework

This is a fluid grid system for desktop & mobile.

It consists of two versions&hellip;

* One is built with `@media` queries.
* The other uses [Adapt.js](http://adapt.960.gs/) to resize.

The one that uses `@media` queries serves a desktop width site to IE7 and IE8, because they can't really run on mobile anyway. IE6 is not officially supported, due to the nature of how box-sizing has to work, in order to accomodate a fixed gutter, but allow for fluid column widths.

**Notes:**

Currently, there is one break point, at 760px. All styles are defined using Sass silent mixins. This means you can choose not to use the "unsemantic" class names, and can instead `@extend` into your own.

Documentation will be forthcoming. For now, I wanted to get this out there, so people could pick it apart and use it as a learning tool for how Sass handles silent mixins.

Also, I wanted to be able to point people here, when asked "Why isn't [960](http://960.gs/) responsive?" It is my hope that this will eventually obviate the need for the 960 Grid System.

0 comments on commit 647d798

Please sign in to comment.