Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am kemch on github.
* I am kemch (https://keybase.io/kemch) on keybase.
* I have a public key whose fingerprint is 041E B40F 163F B670 B06A 98C4 D342 9689 863A FA34
To claim this, I am signing this object:
@kemch
kemch / SassMeister-input.scss
Created August 10, 2014 23:18
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
@import "compass";
$experimental-support-for-svg: false;
.test {
@kemch
kemch / _mixins.scss
Created February 9, 2014 18:34
mixins
// ==========================
// ==========================
// Mixins, Extends
// ==========================
// ==========================
@mixin clear { &:before,
&:after { display: table; content: ""; line-height: 0; }
&:after { clear: both; }
}
{
"files":
{
"Another Grid": "https://raw.github.com/kemch/nestable-fluid-grid/master/sass/partials/_grid.scss",
"Typekit SCSS Reference": "https://raw.github.com/kemch/typekit-reference-and-scss/master/_typekit.scss",
"Umbraco Dynamic Node Properties": "https://gist.github.com/kemch/5248144/raw/813173c99c7d37d43ea109b7fa8fbc7dd639fdb5/Umbraco+Razor+Dynamic+Node+Properties",
"gitignore: os x": "https://raw.github.com/github/gitignore/master/Global/OSX.gitignore",
"gitignore: sass": "https://raw.github.com/github/gitignore/master/Global/SASS.gitignore",
"gitignore: svn": "https://raw.github.com/github/gitignore/blob/master/Global/SVN.gitignore",
"gitignore: windows": "https://raw.github.com/github/gitignore/blob/master/Global/Windows.gitignore",
@kemch
kemch / .editorconfig
Created February 9, 2014 04:00
base .editorconfig
# editorconfig.org
root = true
[*]
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@kemch
kemch / Mixin: inline-block, IE
Last active December 16, 2015 18:39
SASS Mixin for `inline-block` compatibility for IE.
@mixin inline-block {
display: inline-block;
zoom: 1;
*display: inline;
}
@kemch
kemch / Umbraco Razor Dynamic Node Properties
Created March 26, 2013 18:58
Spits out all the default Umbraco page fields for the current page.
<umbraco:Macro runat="server" language="cshtml">
@using System.Xml.Linq
<ul>
<li>Parent: @Model.Parent</li>
<li>Name: @Model.Name</li>
<li>pageName: @Model.pageName</li>
<li>niceUrl: @Model.niceUrl</li>
<li>Id: @Model.Id</li>
<li>SortOrder: @Model.SortOrder</li>
<li>UrlName: @Model.UrlName</li>