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
Show hidden characters
{ | |
"color_scheme": "Packages/Colorized-28212260720662-Railscasts.tmTheme", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", |
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
// GLOBAL : GENERAL STYLE DEFAULTS | |
html | |
margin: 0 | |
padding: 0 | |
body | |
background: #fff | |
margin: 0 | |
body, |
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
<h1>Twitter Bootstrap Form Raw Markup</h1> | |
<p>This is the raw markup of all the form elements pulled from the <a href="http://twitter.github.com/bootstrap/base-css.html#forms">Twitter Bootstrap's Form Page</a> </p> | |
<div class="form-container"> | |
<h2>Well</h2> | |
<form class="well"> | |
<label>Label name</label> | |
<input type="text" class="span3" placeholder="Type something…"> |
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="viewport"> | |
<div class="flip-card"> | |
<div class="card-front"> | |
Front! | |
</div> | |
<div class="card-back"> | |
Back! | |
</div> | |
</div> |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwHvowivLMy9KCveHggbPyD27mz8fiYgCvwlNc8k3lcNca2izmYAIQHxOuLvCNMUi0bbb+1MAHNySKm9oaMTqO8lawmamHovMpjStLykSrjUDHeusnKfbmA/+9io3fDTg3S0kxYzxhBLhNGJauyY1zRiiM1z10Z6DtJ9IICftUPEJvHryx17Nx7YBxOlzMeYBUQ+wfoJJth8pmJ0spRrxy7r0+QsbQNJve2jVHtlFC5Ntk7Jp0E+UmPl1fSzhlvVcuCSOuKI9m3icjEyNk1fz0eCZxpdD3H9i2l4n95D+uBAFYe0OSjbu4ielKbVwlYZrGXn3pkoSrqdLughAPDRlR [email protected] |
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
{ | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", |
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
// Quick-and-dirty mobile-first, responsive SCSS Grid for rapid prototyping. | |
// -------------------------------------------------------------------------- | |
@import 'compass'; | |
// Compass is only used for these first two selectors: | |
* { @include box-sizing(border-box); } | |
.row { @include clearfix; } | |
// Customizables | |
$grid-gutter: 20px; // Total space between columns |
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="container"> | |
<h2>Bootstrap RC2 grids</h2> | |
<p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p> | |
<h4>Three equal columns</h4> | |
<div class="row show-grid"> | |
<div class="col-xs-4">.col-xs-4</div> | |
<div class="col-xs-4">.col-xs-4</div> | |
<div class="col-xs-4">.col-xs-4</div> |
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
[ | |
// swap the keybindings for paste and paste_and_indent | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
// navigate through tabs with cmd + arrows | |
{ "keys": ["super+left"], "command": "next_view_in_stack" }, | |
{ "keys": ["super+right"], "command": "prev_view_in_stack" }, | |
] |
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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
concat: { | |
options: { | |
separator: ';' | |
}, | |
// Target(s) | |
dist: { |