View mixin_media-query.scss
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
/* | |
Media query mixin | |
Adapted from http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/ | |
Examples: | |
@include media-query(min, 704px) {} | |
@include media-query(max, 704px) {} | |
@include media-query(min-max, 360px, 859px) {} */ | |
@mixin media-query($constraint, $breakpoint1, $breakpoint2: null) { | |
@if $constraint == "min" { | |
$emBreakpoint: ($breakpoint1 / 16px) * 1em ; |
View mixin_rem.scss
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
/* | |
Adapted from https://github.com/bitmanic/rem/blob/master/stylesheets/_rem.scss | |
rem(font-size, 28px) will return: | |
font-size: 28px; | |
font-size: 1.75rem; */ | |
$basesize-px: 16px; | |
@mixin rem($property, $values) { | |
// Create empty lists that we can dump values into | |
$px-values: (); | |
$rem-values: (); |
View Colors.xml
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
<codeColors> | |
<colorGroup> | |
<syntaxColor id="CodeColor_HTMLEntity" text="#AECD9D" bold="true" /> | |
<syntaxColor id="CodeColor_JavascriptNative" text="#FCFFE7" /> | |
<syntaxColor id="CodeColor_JavascriptNumber" text="#FBAA21" /> | |
<syntaxColor id="CodeColor_JavascriptClient" text="#FCF296" /> | |
<syntaxColor id="CodeColor_JavascriptSpryKeywords" text="#FF6208" /> | |
<syntaxColor id="CodeColor_JavascriptSpryClasses" text="#FF6208" /> | |
<syntaxColor id="CodeColor_TemplateText" text="#999999" /> | |
<syntaxColor id="CodeColor_TemplateCommentText" text="#82806F" /> |