Skip to content

Instantly share code, notes, and snippets.

@waystilos
Created August 31, 2015 04:38
Show Gist options
  • Save waystilos/11347d9b0e96a8c5e9af to your computer and use it in GitHub Desktop.
Save waystilos/11347d9b0e96a8c5e9af to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// variables
//Colors
$white: #fff;
$black: #000000;
$red: #ff0000;
//placeholder
%bar {
background-color: $red;
width: 100%;
border-radius: 5px;
}
//Font Families
$arial: Arial, Helvetica, sans-serif;
$comic: "Comic Sans MS", cursive, sans-serif;
//////////Variables end/////////////
.bar {
background-color: $red;
width: 100%;
border-radius: 5px;
}
.foo {
@extend .bar;
}
////////Nesting End///////////
.bar, .foo {
background-color: #ff0000;
width: 100%;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment