Created
August 31, 2015 04:26
-
-
Save waystilos/340362ff85cfe17316d2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
//Mixin | |
@mixin border-radius($radius) { | |
-webkit-border-radius: $radius; | |
border-radius: $radius; | |
background-clip: padding-box; /* stops bg color from leaking outside the border: */ | |
} | |
// variables | |
//Colors | |
$white: #fff; | |
$black: #000000; | |
$red: #ff0000; | |
//Font Families | |
$arial: Arial, Helvetica, sans-serif; | |
$comic: "Comic Sans MS", cursive, sans-serif; | |
//////////Variables end///////////// | |
Parent Selector | |
.foo { | |
@include border-radius(4px); | |
} | |
////////Nesting End/////////// |
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
Parent Selector | |
.foo { | |
-webkit-border-radius: 4px; | |
border-radius: 4px; | |
background-clip: padding-box; | |
/* stops bg color from leaking outside the border: */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment