将spoor托管到google了 

spoor是基于960gs,融合blueprint,并参考国人修改的sparkly’s 960,精心调制的css框架。

其实css只是一部分,在文件结构和组织上也花了点时间。我希望spoor能做到的是:

解压 -> 开始前端设计[或者demo开发]

它免去了一些不必要的麻烦,让你能直奔主题,而不是先去官网学习下使用教程。

简单写了个5步教程,声明在先,步骤没经过仔细考量,英文水平有限。欢迎拍砖

5 steps to add Spoor to your project:
1. Set spoor.css as the first css file you need to link, any of your css files/code should after that.
<head>
<link rel=”stylesheet” type=”text/css” href=”style/css/spoor.css” />
<link rel=”stylesheet” type=”text/css” href=”style/css/yourcode1.css” />
<link rel=”stylesheet” type=”text/css” href=”style/css/yourcode2.css” />
</head>
2. Start with class “container” as the most first tag in the <body>..</body>
<body>
<div></div>
</body>
3. Decide which kind of layout you want to use
1) 12 column  -  c-12
2) 16 column  -  c-16
3) 24 column  -  c-24
Once you have made a decision, add it after “container”, also you can turn on/off to show/close the background grid in the page
<body>
<div></div>
</body>
4. The only thing you need to care about is “yourcode.css”( {Spoor}/style/css/yourcode.css). Usually speaking, you can just edit your css code here, and put others aside.
5. You may need to look up at grid.css( {Spoor}/style/css/spoor/grid.css) at the very begining, something like API stuff.

对于版本号没太多概念,所以spoor的假设是从v1.0开始,这个去年折腾过,近段时间翻出来,做了些修改,放到google code上,于是就再次假定v1.1

项目地址:spoor

下载地址:spoor_v1.1.zip