Skip to content

Instantly share code, notes, and snippets.

@cabourn
Created March 28, 2015 17:34
Show Gist options
  • Save cabourn/3d18d925eaf9e13c6385 to your computer and use it in GitHub Desktop.
Save cabourn/3d18d925eaf9e13c6385 to your computer and use it in GitHub Desktop.

Revisions

  1. cabourn created this gist Mar 28, 2015.
    1 change: 1 addition & 0 deletions SassMeister-input-HTML.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    <h1>hello world!!!</h1>
    14 changes: 14 additions & 0 deletions SassMeister-input.scss
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    // ----
    // Sass (v3.4.12)
    // Compass (v1.0.3)
    // ----

    $color: orange;

    body {
    background-color: $color;
    }

    h1 {
    color: white;
    }
    7 changes: 7 additions & 0 deletions SassMeister-output.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    body {
    background-color: orange;
    }

    h1 {
    color: white;
    }
    1 change: 1 addition & 0 deletions SassMeister-rendered.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    <h1>hello world!!!</h1>