ZURB-foundation 2.2.1.1 → 2.2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.mkdn +6 -6
- data/lib/ZURB-foundation.rb +4 -4
- data/stylesheets/_ZURB-foundation.sass +1 -1
- data/stylesheets/zurb/_grid.sass +6 -4
- data/stylesheets/zurb/_ui.sass +1 -1
- data/templates/project/index.html +8 -22
- data/templates/project/sass/foundation.sass +14 -2
- metadata +4 -4
data/README.mkdn
CHANGED
@@ -3,7 +3,7 @@ ZURB Foundation for Compass
|
|
3
3
|
|
4
4
|
To create your first project, you'll need to have the ZURB-foundation gem installed, this will include all the necessary dependencies.
|
5
5
|
|
6
|
-
To install from Ruby Gems
|
6
|
+
To install from Ruby Gems
|
7
7
|
-------------------------
|
8
8
|
|
9
9
|
In Terminal:
|
@@ -18,7 +18,7 @@ In Terminal:
|
|
18
18
|
* `git clone git://github.com/zurb/foundation-sass.git`
|
19
19
|
* `cd foundation-sass`
|
20
20
|
* `sudo gem build ZURB-foundation.gemspec`
|
21
|
-
* `sudo gem install ZURB-foundation-2.2.1.gem`
|
21
|
+
* `sudo gem install ZURB-foundation-2.2.1.2.gem`
|
22
22
|
|
23
23
|
To create your first project
|
24
24
|
----------------------------
|
@@ -26,7 +26,7 @@ To create your first project
|
|
26
26
|
* `cd path/to/where-you-want-new-project`
|
27
27
|
* .scss syntax: `compass create <my_project> -r ZURB-foundation --using ZURB-foundation --force`
|
28
28
|
* .sass syntax: `compass create <my_project> -r ZURB-foundation --using ZURB-foundation --syntax sass --force`
|
29
|
-
|
29
|
+
|
30
30
|
Now you should have a new project folder created with the foundation file structure, but with the awesome advantages of having all the css pre-processed with Sass.
|
31
31
|
|
32
32
|
To Add ZURB-foundation to an existing project
|
@@ -44,9 +44,9 @@ Welcome to Foundation
|
|
44
44
|
|
45
45
|
Foundation is a rock-solid, responsive framework for rapidly prototyping and iterating into production code. It includes a 12-column, future-friendly grid and tons of great tools and elements that'll get you up and running in no time. Clone the repo to get the marketing site, docs, and base source. You can also visit http://foundation.zurb.com to download just the base source as a starting boilerplate.
|
46
46
|
|
47
|
-
Homepage: http://foundation.zurb.com
|
48
|
-
Documentation: http://foundation.zurb.com/docs
|
49
|
-
Download: http://foundation.zurb.com/files/foundation-download-2.2.1.zip
|
47
|
+
Homepage: http://foundation.zurb.com
|
48
|
+
Documentation: http://foundation.zurb.com/docs
|
49
|
+
Download: http://foundation.zurb.com/files/foundation-download-2.2.1.zip
|
50
50
|
|
51
51
|
Foundation is MIT-licensed and absolutely free to use. Foundation wouldn't be possible without the support of the entire ZURB team, our friends and colleagues who gave feedback, and some luminaries who did some heavy lifting that we took advantage of (thanks guys).
|
52
52
|
|
data/lib/ZURB-foundation.rb
CHANGED
data/stylesheets/zurb/_grid.sass
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
margin-left: 0
|
24
24
|
[class*="column"]+[class*='column']:last-child
|
25
25
|
float: right
|
26
|
+
[class*="column"]+.end[class*="column"]
|
27
|
+
float: left
|
26
28
|
|
27
29
|
.row
|
28
30
|
.one.columns
|
@@ -96,7 +98,7 @@
|
|
96
98
|
.centered
|
97
99
|
float: none
|
98
100
|
margin: 0 auto
|
99
|
-
|
101
|
+
|
100
102
|
// Source Ordering
|
101
103
|
.push-two
|
102
104
|
left: 17.4%
|
@@ -141,7 +143,7 @@ img, object, embed
|
|
141
143
|
height: auto
|
142
144
|
img
|
143
145
|
-ms-interpolation-mode: bicubic
|
144
|
-
#map_canvas img, .map_canvas img
|
146
|
+
#map_canvas img, .map_canvas img
|
145
147
|
max-width: none !important
|
146
148
|
|
147
149
|
// Nicolas Gallagher's micro clearfix
|
@@ -152,7 +154,7 @@ img
|
|
152
154
|
clear: both
|
153
155
|
.row, .clearfix
|
154
156
|
zoom: 1
|
155
|
-
|
157
|
+
|
156
158
|
// Blockgrids
|
157
159
|
//----------------------------------------------------------------------------------------------------
|
158
160
|
|
@@ -203,4 +205,4 @@ img
|
|
203
205
|
width: 18.5%
|
204
206
|
@if $support-block-grid-nth-child
|
205
207
|
&:nth-child(5n+1)
|
206
|
-
clear: left
|
208
|
+
clear: left
|
data/stylesheets/zurb/_ui.sass
CHANGED
@@ -12,24 +12,15 @@
|
|
12
12
|
<meta name="viewport" content="width=device-width" />
|
13
13
|
|
14
14
|
<title>Welcome to Foundation</title>
|
15
|
-
|
15
|
+
|
16
16
|
<!-- Included CSS Files -->
|
17
|
-
|
18
|
-
<link rel="stylesheet" href="stylesheets/globals.css">
|
19
|
-
<link rel="stylesheet" href="stylesheets/typography.css">
|
20
|
-
<link rel="stylesheet" href="stylesheets/grid.css">
|
21
|
-
<link rel="stylesheet" href="stylesheets/ui.css">
|
22
|
-
<link rel="stylesheet" href="stylesheets/forms.css">
|
23
|
-
<link rel="stylesheet" href="stylesheets/orbit.css">
|
24
|
-
<link rel="stylesheet" href="stylesheets/reveal.css">
|
25
|
-
<link rel="stylesheet" href="stylesheets/mobile.css">
|
26
|
-
<!-- End Combine and Compress These CSS Files -->
|
17
|
+
<link rel="stylesheet" href="stylesheets/foundation.css">
|
27
18
|
<link rel="stylesheet" href="stylesheets/app.css">
|
28
19
|
|
29
20
|
<!--[if lt IE 9]>
|
30
21
|
<link rel="stylesheet" href="stylesheets/ie.css">
|
31
22
|
<![endif]-->
|
32
|
-
|
23
|
+
|
33
24
|
<script src="javascripts/modernizr.foundation.js"></script>
|
34
25
|
|
35
26
|
<!-- IE Fix for HTML5 Tags -->
|
@@ -107,13 +98,13 @@
|
|
107
98
|
</ul>
|
108
99
|
|
109
100
|
<h3>Buttons</h3>
|
110
|
-
|
101
|
+
|
111
102
|
<div class="row">
|
112
103
|
<div class="six columns">
|
113
104
|
<p><a href="#" class="small blue button">Small Blue Button</a></p>
|
114
105
|
<p><a href="#" class="blue button">Medium Blue Button</a></p>
|
115
106
|
<p><a href="#" class="large blue button">Large Blue Button</a></p>
|
116
|
-
|
107
|
+
|
117
108
|
<p><a href="#" class="nice radius small blue button">Nice Blue Button</a></p>
|
118
109
|
<p><a href="#" class="nice radius blue button">Nice Blue Button</a></p>
|
119
110
|
<p><a href="#" class="nice radius large blue button">Nice Blue Button</a></p>
|
@@ -122,7 +113,7 @@
|
|
122
113
|
<p><a href="#" class="small red button">Small Red Button</a></p>
|
123
114
|
<p><a href="#" class="green button">Medium Green Button</a></p>
|
124
115
|
<p><a href="#" class="large white button">Large White Button</a></p>
|
125
|
-
|
116
|
+
|
126
117
|
<p><a href="#" class="nice radius small red button">Nice Red Button</a></p>
|
127
118
|
<p><a href="#" class="nice radius green button">Nice Green Button</a></p>
|
128
119
|
<p><a href="#" class="nice radius large white button">Nice White Button</a></p>
|
@@ -130,7 +121,7 @@
|
|
130
121
|
</div>
|
131
122
|
</div>
|
132
123
|
|
133
|
-
<div class="four columns">
|
124
|
+
<div class="four columns">
|
134
125
|
<h4>Getting Started</h4>
|
135
126
|
<p>We're stoked you want to try Foundation! To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
|
136
127
|
|
@@ -147,19 +138,14 @@
|
|
147
138
|
</div>
|
148
139
|
<!-- container -->
|
149
140
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
141
|
<!-- Included JS Files -->
|
154
142
|
<script src="javascripts/jquery.min.js"></script>
|
155
|
-
<!-- Combine and Compress These JS Files -->
|
156
143
|
<script src="javascripts/jquery.reveal.js"></script>
|
157
144
|
<script src="javascripts/jquery.orbit-1.4.0.js"></script>
|
158
145
|
<script src="javascripts/jquery.customforms.js"></script>
|
159
146
|
<script src="javascripts/jquery.placeholder.min.js"></script>
|
160
147
|
<script src="javascripts/jquery.tooltips.js"></script>
|
161
|
-
<!-- End Combine and Compress These JS Files -->
|
162
148
|
<script src="javascripts/app.js"></script>
|
163
149
|
|
164
150
|
</body>
|
165
|
-
</html>
|
151
|
+
</html>
|
@@ -4,7 +4,19 @@
|
|
4
4
|
// Importing all of Foundation
|
5
5
|
@import ZURB-foundation
|
6
6
|
|
7
|
-
// Import Each Specific Piece
|
7
|
+
// Import Each Specific Piece for SCSS
|
8
|
+
// @import "zurb/buttons";
|
9
|
+
// @import "zurb/forms";
|
10
|
+
// @import "zurb/globals";
|
11
|
+
// @import "zurb/grid";
|
12
|
+
// @import "zurb/mobile";
|
13
|
+
// @import "zurb/orbit";
|
14
|
+
// @import "zurb/reveal";
|
15
|
+
// @import "zurb/typography";
|
16
|
+
// @import "zurb/ui";
|
17
|
+
// @import "zurb/shared";
|
18
|
+
|
19
|
+
// Import Each Specific Piece for SASS
|
8
20
|
// @import zurb/buttons
|
9
21
|
// @import zurb/forms
|
10
22
|
// @import zurb/globals
|
@@ -14,4 +26,4 @@
|
|
14
26
|
// @import zurb/reveal
|
15
27
|
// @import zurb/typography
|
16
28
|
// @import zurb/ui
|
17
|
-
// @import zurb/shared
|
29
|
+
// @import zurb/shared
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZURB-foundation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.1.
|
4
|
+
version: 2.2.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: compass
|
16
|
-
requirement: &
|
16
|
+
requirement: &70282317444820 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: 0.12.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70282317444820
|
25
25
|
description: ZURB Foundation ported over to work with the power of Compass.
|
26
26
|
email: foundation@zurb.com
|
27
27
|
executables: []
|