Skip to content

Instantly share code, notes, and snippets.

@webpax
Created January 12, 2015 20:24
Show Gist options
  • Save webpax/2a1b5cf4c3a23dce1daf to your computer and use it in GitHub Desktop.
Save webpax/2a1b5cf4c3a23dce1daf to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
}
}
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