This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.element { | |
font-size: ms(0); /* 0 = first in scale, 1,2,3 and so on... */ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<strong class="show-for-landscape">You are in landscape orientation.</strong> | |
<strong class="show-for-portrait">You are in portrait orientation.</strong> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// You custom settings file to override Foundation defaults | |
@import "settings"; | |
// Comment out this import if you are customizing you imports below | |
@import "foundation"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import specific parts of Foundation by commenting the import "foundation" | |
// and uncommenting what you want below. You must uncomment the following if customizing | |
// @import "compass/css3"; | |
// @import "foundation/settings"; | |
// @import "foundation/functions/all"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Control which mixins you have access too | |
// @import "foundation/mixins/clearfix"; | |
// @import "foundation/mixins/css-triangle"; | |
// @import "foundation/mixins/font-size"; | |
// Must include next two for semantic grid to work | |
// @import "foundation/mixins/respond-to"; | |
// @import "foundation/mixins/semantic-grid"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Control which components you get if customizing | |
// @import "foundation/components/modules/buttons"; | |
// @import "foundation/components/modules/tabs"; | |
// @import "foundation/components/modules/ui"; | |
// @import "foundation/components/modules/topbar"; | |
// @import "foundation/components/modules/navbar"; | |
// @import "foundation/components/modules/orbit"; | |
// @import "foundation/components/modules/reveal"; | |
// @import "foundation/components/modules/offcanvas"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="fqv" style="position:fixed;top:4px;left:4px;z-index:999;color:#fff;"><p style="font-size:12px;background:rgba(0,0,0,0.75);padding:5px;margin-bottom:1px;line-height:1.2;"><span class="left">Media:</span> <span style="font-weight:bold;" class="show-for-xlarge">Extra Large</span><span style="font-weight:bold;" class="show-for-large">Large</span><span style="font-weight:bold;" class="show-for-medium">Medium</span><span style="font-weight:bold;" class="show-for-small">Small</span><span style="font-weight:bold;" class="show-for-landscape">Landscape</span><span style="font-weight:bold;" class="show-for-portrait">Portrait</span><span style="font-weight:bold;" class="show-for-touch">Touch</span></p></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// UNCOMMENT THE LINE YOU WANT BELOW IF YOU WANT IE8 SUPPORT AND ARE USING .block-grids | |
// $('.block-grid.two-up>li:nth-child(2n+1)').css({clear: 'both'}); | |
// $('.block-grid.three-up>li:nth-child(3n+1)').css({clear: 'both'}); | |
// $('.block-grid.four-up>li:nth-child(4n+1)').css({clear: 'both'}); | |
// $('.block-grid.five-up>li:nth-child(5n+1)').css({clear: 'both'}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="five columns"> | |
<label class="error">Field with Error</label> | |
<input type="text" class="error" /> | |
<small class="error">Invalid entry</small> | |
</div> | |
<div class="five columns end error"> | |
<label>Another Error</label> | |
<input type="text" /> |