Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created February 25, 2014 14:56
Show Gist options
  • Save mturjak/9210385 to your computer and use it in GitHub Desktop.
Save mturjak/9210385 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// ----
%message {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
.success {
@extend %message;
border-color: green;
}
.error {
@extend %message;
border-color: red;
}
.warning {
@extend %message;
border-color: yellow;
}
.success, .error, .warning {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
.success {
border-color: green;
}
.error {
border-color: red;
}
.warning {
border-color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment