Created
January 12, 2015 20:24
-
-
Save webpax/2a1b5cf4c3a23dce1daf to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$lightgray: #fafafa; | |
$darkgray: #131313; | |
.nav { | |
background: #darkgray; | |
border: 1px solid $lightgray; | |
.nav { | |
background: $darkgray; | |
border: 1px solid $lightgray; | |
} | |
ul { | |
list-style-type: none; | |
li { | |
background: $lightgray; | |
a { | |
color: $darkgray; | |
} | |
} | |
} | |
} | |
@mixin inline-list { | |
list-style-type: none; | |
&, & li { | |
margin: 0px; | |
padding: 0px; | |
display: inline ;}} | |
button, .button { | |
background: $color-purple; | |
&:hover { | |
background: darken ($color-primary); | |
} | |
} | |
$color-primary: #bada55; | |
$color-secondary: complement($color-primary); | |
@mixin vendorize($property, $value) { | |
-webkit-#{$property}: $value; | |
-moz-#{$property}: $value; | |
-ms-#{$property}: $value; | |
-o-#{$property}: $value; | |
} | |
} | |
li { | |
margin: 0; | |
padding: 0; | |
display: inline; | |
background: #fafafa; | |
a { | |
color: #131313; | |
} | |
} | |
} | |
} | |
This file contains hidden or 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
Invalid CSS after "}": expected selector or at-rule, was "}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment