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"> | |
<div class="content" role="main"> | |
<h1>This is the heading</h1> | |
</div> | |
<aside class="sidebar"> | |
<p>This is the sidebar</p> | |
</aside> | |
</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
gzs () { | |
gzip -c $1 | wc -c | |
} |
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
{ | |
"bold_folder_labels": true, | |
"caret_style": "smooth", | |
"color_scheme": "Packages/Github Color Theme/GitHub.tmTheme", | |
"draw_centered": false, | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"font_face": "Monaco Lives", | |
"font_options": | |
[ |
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
$a: 'a' 'b' 'c'; | |
div { | |
@for $n from 1 through length($a) { | |
&:#{nth($a, $n)} { | |
color: blue; |
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
// _themes.scss | |
$themes: ( | |
pre-prep: ( | |
light: #ffdeed, |
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
@function modifier($name) | |
@return "--#{$name}" | |
=component($name, $modifier) | |
@if $modifier != "" |
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin vertical-gradient($start, $stop) { | |
background-color: $stop; | |
background-image:-webkit-gradient(linear, left top, left bottom, from($start), to($stop)); | |
background-image:-moz-linear-gradient(top, $start, $stop); | |
}; |
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="sexy-checkbox"> | |
<label class="sexy-checkbox__container" for="swag"></label> | |
<input class="sexy-checkbox__checkbox" type="checkbox" id="swag"> | |
<label class="sexy-checkbox__fill" for="swag"></label> | |
</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
<div class="container"> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>Entry Header 1</th> | |
<th>Entry Header 2</th> | |
<th>Entry Header 3</th> | |
<th>Entry Header 4</th> | |
</tr> | |
</thead> |
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"> | |
<div class="inputGroup"> | |
<input type="text" class="inputField inputGroup__item"> | |
<div class="inputGroup__btn"> | |
<button class="btn">Button</button> | |
</div> | |
</div> | |
</div> | |