Adding Callouts to Docs (#4535)

* 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
This commit is contained in:
Cody Clark
2017-07-28 16:59:19 -07:00
committed by Andrew Chen
parent 28f66c1f71
commit 9f0d7e54b2
3 changed files with 125 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
.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;
}