├── .gitignore
├── 12.psd
├── css
├── .DS_Store
├── style.css
├── rwdgrid.min.css
└── rwdgrid.css
├── README.md
└── index.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/12.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gsvineeth/rwdgrid/HEAD/12.psd
--------------------------------------------------------------------------------
/css/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gsvineeth/rwdgrid/HEAD/css/.DS_Store
--------------------------------------------------------------------------------
/css/style.css:
--------------------------------------------------------------------------------
1 | /* Ignore this stylesheet*/
2 |
3 | p {
4 | background:#f5f5f5;
5 | font-family:sans-serif;
6 | font-size:85%;
7 | line-height:2em;
8 | font-weight: bold;
9 | color:#333;
10 | padding:1em;
11 | min-height:120px;
12 | }
13 |
14 |
15 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # rwdgrid - Responsive Grid System for your Next Project
2 |
3 | www.rwdgrid.com
4 |
5 | www.rwdgrid.com/demo
6 |
7 | rwdgrid is just another Grid system based on popular 960grid, which is responsive and ranges from mobile, tablet, laptops and
8 | wide screen displays. Naming convention is very similar to 960 grid system, where underscore is replaced by hyphen (increases readabilty).
9 | rwdgrid is having different Grid system made for 1200px+, 1024px+, 720px+ and Mobile screens.
10 |
11 | This can be used as a base grid system that will help you to build responsive webdesign with your existing proficency over popular grid system
12 |
13 | Sincere thanks to 960.gs,Html Shiv (HTML5 IE enabling script),
14 | css3 Mediaqueries js (Mediaqueries IE enabling script - Don't forget the existing web!),
15 | Html5 boilerplate and you! :)
16 |
17 | rwdgrid is free to use and abuse under WTFPL
18 |
19 |
20 |
--------------------------------------------------------------------------------
/css/rwdgrid.min.css:
--------------------------------------------------------------------------------
1 | *,:after,:before{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}[class*='grid-']{float:left;padding:10px;width:100%}.clear-grid{clear:both;float:inherit}.container{margin:0;width:100%}.container:after,.container:before{display:table;clear:both;content:" "}.nest{margin:0 -10px;padding:0;width:auto}.grid-m-12{width:100%}.grid-m-11{width:91.666663%}.grid-m-10{width:83.33%}.grid-m-9{width:74.999997%}.grid-m-8{width:66.66666664%}.grid-m-7{width:58.333%}.grid-m-6{width:50%}.grid-m-5{width:41.6665%}.grid-m-4{width:33.33%}.grid-m-3{width:24.99%}.grid-m-2{width:16.66666%}.grid-m-1{width:8.33%}@media (min-width: 720px){.grid-12{width:100%}.grid-11{width:91.666663%}.grid-10{width:83.33%}.grid-9{width:74.999997%}.grid-8{width:66.66666664%}.grid-7{width:58.333%}.grid-6{width:50%}.grid-5{width:41.6665%}.grid-4{width:33.33%}.grid-3{width:24.99%}.grid-2{width:16.66666%}.grid-1{width:8.33%}.grid-t-12{width:100%}.grid-t-11{width:91.666663%}.grid-t-10{width:83.33%}.grid-t-9{width:74.999997%}.grid-t-8{width:66.66666664%}.grid-t-7{width:58.333%}.grid-t-6{width:50%}.grid-t-5{width:41.6665%}.grid-t-4{width:33.33%}.grid-t-3{width:24.99%}.grid-t-2{width:16.66666%}.grid-t-1{width:8.33%}}@media only screen and (min-width: 1024px){.grid-tl-12{width:100%}.grid-tl-11{width:91.666663%}.grid-tl-10{width:83.33%}.grid-tl-9{width:74.999997%}.grid-tl-8{width:66.66666664%}.grid-tl-7{width:58.333%}.grid-tl-6{width:50%}.grid-tl-5{width:41.6665%}.grid-tl-4{width:33.33%}.grid-tl-3{width:24.99%}.grid-tl-2{width:16.66666%}.grid-tl-1{width:8.33%}}@media only screen and (min-width: 1200px){.container{max-width:1180px;margin:0 auto}.container-fluid{max-width:90%;margin:0 5%}.grid-d-12{width:100%}.grid-d-11{width:91.666663%}.grid-d-10{width:83.33%}.grid-d-9{width:74.999997%}.grid-d-8{width:66.66666664%}.grid-d-7{width:58.333%}.grid-d-6{width:50%}.grid-d-5{width:41.6665%}.grid-d-4{width:33.33%}.grid-d-3{width:24.99%}.grid-d-2{width:16.66666%}.grid-d-1{width:8.33%}}img.scale,img.responsive{max-width:100%;height:auto}
2 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |