Skip to content

Commit

Permalink
Merge branch 'master' of github.com:zurb/foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Hayes committed Aug 14, 2012
2 parents e162c7e + c3d9b6e commit bfbd146
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ WordPress

* [Starter Theme](https://github.com/drewsymo/Foundation) by Drew Morris
* [Reverie](http://themefortress.com/reverie/) by Zhen
* [WP-Foundation](http://320press.com/wp-foundation/features/) by 320press

Joomla

Expand Down Expand Up @@ -85,6 +86,10 @@ Grid displayer
* [Grid displayer bookmarklet](http://alefeuvre.github.com/foundation-grid-displayer/) by [Antoine Lefeuvre](http://twitter.com/jiraisurfer)
* [Responsive Design Bookmarklet](http://responsive.victorcoulon.fr/) by [Victor Coulon](https://twitter.com/_victa)

Modular Scale

* [Modular Scale](https://github.com/scottkellum/modular-scale) by Mason Wendell and Scott Kellum

MIT Open Source License
=======================

Expand Down
2 changes: 1 addition & 1 deletion foundation.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
gem.version = Foundation::VERSION

gem.add_dependency "compass", [">= 0.12.2"]
gem.add_dependency "sass", [">= 3.2.0.alpha.244"]
gem.add_dependency "sass", [">= 3.2.0"]
gem.add_dependency "modular-scale", [">= 1.0.0"]
gem.add_dependency "rake"
end
4 changes: 2 additions & 2 deletions templates/project/scss/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
// @import "foundation/functions/all";
// @import "foundation/common/globals";
// @import "foundation/mixins/clearfix";
// @import "modular-scale";

// Control which mixins you have access too

// @import "foundation/mixins/css-triangle";
// @import "foundation/mixins/font-size";

// Must include next three for semantic grid to work
// Must include next two for semantic grid to work

// @import "foundation/mixins/respond-to";

// @import "foundation/mixins/semantic-grid";

// Must include the grid for any responsiveness
Expand Down
27 changes: 26 additions & 1 deletion test/forms.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,32 @@ <h2>Foundation Forms Testing</h2>
<!-- Test Foundation Components Here -->
<div class="row">
<div class="twelve columns">

<form class="custom">
<div class="row collapse">
<div class="eight mobile-three columns">
<input type="text" />
</div>
<div class="four mobile-one columns">
<a href="#" class="postfix button">Buscar</a>
</div>
</div>
<div class="row">
<div class="six columns">
<label for="radio1">
<input name="radio1" type="radio" id="radio1"
checked="checked" style="display:none;">
<span class="custom radio"></span> RB1
</label>
</div>
<div class="six columns">
<label for="radio2">
<input name="radio1" type="radio" id="radio2"
style="display:none;">
<span class="custom radio"></span> RB2
</label>
</div>
</div>
</form>
<a name="general"></a>
<h3>Forms</h3>
<h4 class="subheader">We set out in Foundation 3 to create an easy to handle, powerful, and versatile form layout system. A combination of form styles and the Foundation grid means you can do basically anything.</h4>
Expand Down

0 comments on commit bfbd146

Please sign in to comment.