Skip to content

Instantly share code, notes, and snippets.

View robertlyall's full-sized avatar

Robert Lyall robertlyall

View GitHub Profile
@robertlyall
robertlyall / SassMeister-input-HTML.html
Created September 8, 2014 09:12
Generated by SassMeister.com.
<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>
@robertlyall
robertlyall / gist:cb90d2efce71423eb3b3
Created September 24, 2014 16:30
gzip size printer
gzs () {
gzip -c $1 | wc -c
}
@robertlyall
robertlyall / gist:85bb288083db30b47d09
Created October 1, 2014 16:38
Sublime User Preferences
{
"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":
[
@robertlyall
robertlyall / SassMeister-input.scss
Created November 3, 2014 12:50
Generated by SassMeister.com.
// ----
// 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;
@robertlyall
robertlyall / SassMeister-input.scss
Created November 7, 2014 11:33
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
// _themes.scss
$themes: (
pre-prep: (
light: #ffdeed,
@robertlyall
robertlyall / SassMeister-input.sass
Created November 7, 2014 11:39
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@function modifier($name)
@return "--#{$name}"
=component($name, $modifier)
@if $modifier != ""
@robertlyall
robertlyall / SassMeister-input.scss
Created December 15, 2014 12:57
Generated by SassMeister.com.
// ----
// 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);
};
@robertlyall
robertlyall / SassMeister-input-HTML.html
Created February 20, 2015 13:24
Generated by SassMeister.com.
<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>
@robertlyall
robertlyall / SassMeister-input-HTML.html
Created February 20, 2015 23:57
Generated by SassMeister.com.
<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>
@robertlyall
robertlyall / SassMeister-input-HTML.html
Created March 27, 2015 12:16
Generated by SassMeister.com.
<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>