diff --git a/docs/_includes/browser-warning.html b/docs/_includes/browser-warning.html new file mode 100644 index 0000000..8295383 --- /dev/null +++ b/docs/_includes/browser-warning.html @@ -0,0 +1,9 @@ + diff --git a/docs/_includes/header.html b/docs/_includes/header.html index 90a3bf3..563c355 100644 --- a/docs/_includes/header.html +++ b/docs/_includes/header.html @@ -14,12 +14,6 @@ - - - +
diff --git a/docs/two.html b/docs/two.html index 78c8dc8..bed58ea 100644 --- a/docs/two.html +++ b/docs/two.html @@ -10,7 +10,7 @@ - + diff --git a/sass/docs.scss b/sass/docs.scss index ebc7af6..24611cc 100644 --- a/sass/docs.scss +++ b/sass/docs.scss @@ -1038,3 +1038,52 @@ hr { opacity: 1; } } + +/* Taken from Bootstrap docs */ +/* + * Callouts + * + * Not quite alerts, but custom and helpful notes for folks reading the docs. + * Requires a base and modifier class. + */ + +/* Common styles for all types */ +.bs-callout { + padding: 20px; + margin: 20px 0; + border-left: 3px solid #eee; +} +.bs-callout h4 { + margin-top: 0; + margin-bottom: 5px; +} +.bs-callout p:last-child { + margin-bottom: 0; +} +.bs-callout code { + background-color: #fff; + border-radius: 3px; +} + +/* Variations */ +.bs-callout-danger { + background-color: #fdf7f7; + border-color: #d9534f; +} +.bs-callout-danger h4 { + color: #d9534f; +} +.bs-callout-warning { + background-color: #fcf8f2; + border-color: #f0ad4e; +} +.bs-callout-warning h4 { + color: #f0ad4e; +} +.bs-callout-info { + background-color: #f4f8fa; + border-color: #5bc0de; +} +.bs-callout-info h4 { + color: #5bc0de; +}