Skip to content

Instantly share code, notes, and snippets.

View scottkellum's full-sized avatar
🕴️
Working on Typetura

Scott Kellum scottkellum

🕴️
Working on Typetura
View GitHub Profile
@scottkellum
scottkellum / SassMeister-input.scss
Created January 10, 2014 20:34
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@media screen and (min-width: 600px) and (max-width: 1000px) {
div {
foo: bar;
}
}
# COMPASS CONFIG
http_path = "test/"
css_dir = "test/css"
sass_dir = "test/stylesheets"
images_dir = "test/images"
@scottkellum
scottkellum / SassMeister-input.scss
Created January 9, 2014 22:06
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
// Using Sass 3.3 maps as a way to change
// the output of mixins.
@scottkellum
scottkellum / SassMeister-input.scss
Created January 9, 2014 16:53
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// Susy (v2.0.0.beta.2)
// ----
@import "susy";
.class{
// foo: bar;
@scottkellum
scottkellum / SassMeister-input.scss
Created January 8, 2014 21:41
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
test {
add-unit: 12px + 20;
multiply: 12px * 2;
negitive: 12px * -1;
// duplicate-value: 12px * 12px; // < this will result in an error
@scottkellum
scottkellum / SassMeister-input.scss
Created January 4, 2014 22:11
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@import "compass";
$map: (
animation: foo 1s infinite,
width: 200px,
@scottkellum
scottkellum / SassMeister-input.scss
Created December 30, 2013 15:48
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@import "modular-scale";
$base-font-size: 16px;
@function msem($val) {
@scottkellum
scottkellum / SassMeister-input.scss
Created December 11, 2013 16:44
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@if myfunc(0) != unquote("myfunc(0)") {
myfunc {
exists: true;
}
} @else {
@scottkellum
scottkellum / SassMeister-input.scss
Created December 10, 2013 16:44
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$mymixin: (
styles: (
border-radius: 1em,
background-color: red,
),
@scottkellum
scottkellum / SassMeister-input.scss
Created December 9, 2013 13:23
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@function baseten-hex($number) {
$hex-values: 0 1 2 3 4 5 6 7 8 9 a b c d e f;
@if round($number) != $number {
@warn "base10-hex() needs a integer";
}