sass-site/source/code-snippets/_homepage-extend-css.md

20 lines
221 B
Markdown
Raw Normal View History

2013-02-24 07:04:16 +01:00
```css
.message, .success, .error, .warning {
border: 1px solid #cccccc;
2013-02-24 07:04:16 +01:00
padding: 10px;
color: #333;
}
.success {
border-color: green;
}
.error {
border-color: red;
}
.warning {
border-color: yellow;
}
```