Skip to content

Instantly share code, notes, and snippets.

View KatieK2's full-sized avatar

KatieK KatieK2

View GitHub Profile
@KatieK2
KatieK2 / SassMeister-input.scss
Created October 14, 2014 17:21
Generated by SassMeister.com.
// ----
// libsass (v2.0.0)
// ----
@mixin border($direction,$size,$colour) {
border-#{$direction}: $size solid $colour;
}
h2 {
@include border("top", "2px", "red");
@KatieK2
KatieK2 / SassMeister-input.scss
Created October 3, 2014 21:02
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$color: oseli;//red
@debug the color is $color;
@debug the color is type-of($color);
@KatieK2
KatieK2 / SassMeister-input.scss
Created July 18, 2014 20:40
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
@import "compass";
h1 {
@include transition-property(width);
@include transition-duration(.2s);
@KatieK2
KatieK2 / SassMeister-input-HTML.html
Created June 17, 2014 04:16
Generated by SassMeister.com.
<p>
With Sass 3.3.3 (Maptastic Maple) and
Compass 0.12.3 (Alnilam), maps compile to errors:
</p>
<code> error demo/sass/screen.scss (Line 5: Invalid CSS after "$map: (key1": expected ")", was ": white, key2: ...")</code>
@KatieK2
KatieK2 / SassMeister-input.scss
Created June 16, 2014 23:58
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$text-dark: #492a35;
$text-light: #bdc1ad;
$border-light: #bdc1ad;
$rgba-lighten: rgba(255, 255, 255, 0.4);
$rgba-darken: rgba(0, 0, 0, 0.65);
@KatieK2
KatieK2 / SassMeister-input.scss
Created June 16, 2014 23:52
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$bgcolor: #C6538C;
$text-color: black;
$alt-text: white;
$second-bg: #73264C;
@KatieK2
KatieK2 / SassMeister-input-HTML.html
Created May 29, 2014 03:58
Generated by SassMeister.com.
<p>
With Sass 3.3.3 (Maptastic Maple) and
Compass 0.12.3 (Alnilam), maps compile to errors:
</p>
<code> error demo/sass/screen.scss (Line 5: Invalid CSS after "$map: (key1": expected ")", was ": white, key2: ...")</code>
@KatieK2
KatieK2 / SassMeister-input-HTML.html
Created May 13, 2014 18:00
Generated by SassMeister.com.
<h1>Lorem Ipsum</h1>
<h2>Is super fabulous</h2>
@KatieK2
KatieK2 / SassMeister-input.scss
Created March 20, 2014 21:51
Generated by SassMeister.com.
// ----
// Sass (v3.3.3)
// Compass (v1.0.0.alpha.18)
// ----
@function genRandom($int) {
$random: random(210);
$random2: ($int * $random);
@return $random2;
@debug $random2;
@KatieK2
KatieK2 / SassMeister-input.scss
Created March 13, 2014 17:37
Generated by SassMeister.com.
// ----
// Sass (v3.3.1)
// Compass (v1.0.0.alpha.18)
// ----
@import "compass";
@mixin post-link ($class, $color, $hover) {
a.#{$class}:link {
color: $color;