Skip to content

Instantly share code, notes, and snippets.

@coreyti
Created May 31, 2012 05:06
Show Gist options
  • Save coreyti/2841172 to your computer and use it in GitHub Desktop.
Save coreyti/2841172 to your computer and use it in GitHub Desktop.
Usage Examples from my Fork of Twitter Bootstrap
<section>
<ul>
<li>
<h2>account</h2>
<p>placeholder</p>
</li>
<li>
<h2>balances</h2>
<p>placeholder</p>
</li>
</ul>
</section>
<section>
<h2>money stuffs</h2>
<ul>
<li>
<h3>credit card</h3>
<p>placeholder</p>
</li>
<li>
<h3>other</h3>
<p>placeholder</p>
</li>
</ul>
</section>
<section>
<ul>
<li>
<h2>communications</h2>
<p>placeholder</p>
</li>
<li>
<h2>linked accounts</h2>
<p>placeholder</p>
</li>
</ul>
</section>
@wellPadding : 40;
section {
#grid > .row(@gridGutterWidth);
> h2 {
margin-left : @gridGutterWidth;
}
> ul {
list-style : none;
margin : 0;
}
> ul > li {
#grid > .span(6, -@wellPadding);
#wells > .main();
}
}
@coreyti
Copy link
Author

coreyti commented May 31, 2012

@coreyti
Copy link
Author

coreyti commented May 31, 2012

"vX.X.X-compatible" branches on my fork will always be entirely backwards compatible.
"vX.X.X-divergent" branches will be backwards compatible if you're doing:

@import "twitter/bootstrap";
// and/or
@import "twitter/bootstrap/mixins";

If selecting a specific sub-package, things change (for the better).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment