skyframe 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
data/lib/skyframe/version.rb
CHANGED
@@ -31,15 +31,16 @@ Clone the git repo - `git clone git://github.com/h5bp/html5-boilerplate.git` - o
|
|
31
31
|
|
32
32
|
## Contributing
|
33
33
|
|
34
|
-
Anyone and everyone is welcome to [contribute](https://github.com/
|
34
|
+
Anyone and everyone is welcome to [contribute](https://github.com/).
|
35
|
+
Hundreds of developers have helped make the HTML5 Boilerplate what it is today.
|
35
36
|
|
36
37
|
|
37
38
|
## Project information
|
38
39
|
|
39
|
-
* Source:
|
40
|
-
* Web:
|
41
|
-
* Docs:
|
42
|
-
* Twitter:
|
40
|
+
* Source:
|
41
|
+
* Web:
|
42
|
+
* Docs:
|
43
|
+
* Twitter:
|
43
44
|
|
44
45
|
|
45
46
|
## License
|
@@ -49,6 +50,7 @@ Anyone and everyone is welcome to [contribute](https://github.com/h5bp/html5-boi
|
|
49
50
|
* jQuery: MIT/GPL license
|
50
51
|
* Modernizr: MIT/BSD license
|
51
52
|
* Normalize.css: Public Domain
|
53
|
+
* Selectivizr: MIT/GPL license
|
52
54
|
|
53
55
|
### Everything else:
|
54
56
|
|
@@ -129,8 +129,8 @@ This is a Compass extension for Skyron using html5-boilerplate templates
|
|
129
129
|
|
130
130
|
Stand Alone Installation
|
131
131
|
========================
|
132
|
-
$ gem install
|
133
|
-
$ compass create <my_project> -r
|
132
|
+
$ gem install skyframe
|
133
|
+
$ compass create <my_project> -r skyframe -r susy -u skyframe --javascripts-dir js --css-dir css --images-dir img
|
134
134
|
}
|
135
135
|
|
136
136
|
welcome_message %Q{
|
@@ -1,2 +1,31 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/*
|
2
|
+
------------------------------------------------------------------------------
|
3
|
+
88 8b d8 88""Yb dP"Yb 88""Yb 888888 .dP"Y8
|
4
|
+
88 88b d88 88__dP dP Yb 88__dP 88 `Ybo."
|
5
|
+
88 88YbdP88 88""" Yb dP 88"Yb 88 o.`Y8b
|
6
|
+
88 88 YY 88 88 YbodP 88 Yb 88 8bodP'
|
7
|
+
------------------------------------------------------------------------------
|
8
|
+
Imports
|
9
|
+
------------------------------------------------------------------------------
|
10
|
+
*/
|
11
|
+
|
12
|
+
@import "compass";
|
13
|
+
@import "susy"; // Grid system
|
14
|
+
|
15
|
+
|
16
|
+
@import "partials/vars";
|
17
|
+
@import "partials/functions";
|
18
|
+
@import "partials/mixins";
|
19
|
+
@import "partials/normalize"; // H5BP normalize
|
20
|
+
@import "partials/helpers"; // H5BP Helpers
|
21
|
+
|
22
|
+
@import "partials/type";
|
23
|
+
@import "partials/layout"; // Structure
|
24
|
+
|
25
|
+
@import "partials/media"; // <img>, <video>, video.js
|
26
|
+
|
27
|
+
@import "partials/mods"; // Modules
|
28
|
+
@import "partials/misc"; // misc element. eg chromeframe
|
29
|
+
|
30
|
+
@import "partials/print"; // H5BP Print style
|
31
|
+
@import "partials/debug"; // Debug
|