sass-site/source/code-snippets/_homepage-extend-css.md
2013-02-23 22:04:16 -08:00

19 lines
226 B
Markdown

```css
.message, .success, .error, .warning {
border-color: 1px solid #cccccc;
padding: 10px;
color: #333;
}
.success {
border-color: green;
}
.error {
border-color: red;
}
.warning {
border-color: yellow;
}
```