This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$sizes: ( | |
xs: 5px, | |
s: 10px, | |
m: 15px, | |
l: 20px, | |
xl: 30px, |
This file contains 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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
// Breakpoints | |
@mixin breakpoint($points...) { | |
@for $i from 1 through length($points) { | |
$point: nth($points, $i); | |
This file contains 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
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
/** | |
* Spacing helpers | |
* @author Luke Askew | |
*/ | |
This file contains 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
// ---- | |
// Sass (v3.3.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// A clean way to deal with z-index layers in Sass | |
// Based on http://css-tricks.com/handling-z-index/ | |
// --- | |
// A map of z layers |
This file contains 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
// ---- | |
// Sass (v3.3.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$zindex: ( | |
header: 1000, | |
modal: 2000, | |
modal-buttons: 2500 | |
); |
This file contains 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
// ---- | |
// Sass (v3.3.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin progress_bar($steps) { | |
$width: (100/$steps)*1%; | |
@for $i from 1 through $steps { |
This file contains 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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Hacking made easy | |
// --- | |
// A couple of Sass functions | |
// To ease the pain of dealing | |
// With special values for IE |
This file contains 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="content"> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Si qua in iis corrigere voluit, deteriora fecit. Est enim effectrix multarum et magnarum voluptatum. Apud imperitos tum illa dicta sunt, aliquid etiam coronae datum; Tubulum fuisse, qua illum, cuius is condemnatus est rogatione, P. Duo Reges: constructio interrete. Si verbum sequimur, primum longius verbum praepositum quam bonum. Istam voluptatem perpetuam quis potest praestare sapienti? </p> | |
<p>Fortemne possumus dicere eundem illum Torquatum? Utram tandem linguam nescio? Consequens enim est et post oritur, ut dixi. Nam illud vehementer repugnat, eundem beatum esse et multis malis oppressum. </p> | |
<p>Neque enim civitas in seditione beata esse potest nec in discordia dominorum domus; Deinde disputat, quod cuiusque generis animantium statui deceat extremum. Atqui haec patefactio quasi rerum opertarum, cum quid quidque sit aperitur, definitio est. Res tota, Torquate, non doctorum hominum, velle post mortem epulis celebrari memoriam |
This file contains 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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
// Easy-peasy grids | |
$cols: 12; | |
$gutter: 1%; | |
$name: col; |
This file contains 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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$breakpoints: ( | |
sm: 30em, | |
med: 50em, | |
lrg: 80em | |
); |
NewerOlder