9f0d7e54b2
* Create callouts.css * Linking callouts.css * Alphabetical order * Added doc for using callouts * Fix link * Deleting info * Updates per Ahmet Added more detailed examples and a common issues section * Update style-guide.md
20 lines
284 B
CSS
20 lines
284 B
CSS
.caution, .note, .warning {
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border: 1px solid #eee;
|
|
border-left-width: 5px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.caution {
|
|
border-left-color: #f0ad4e;
|
|
}
|
|
|
|
.note {
|
|
border-left-color: #428bca;
|
|
}
|
|
|
|
.warning {
|
|
border-left-color: #d9534f;
|
|
}
|