diff options
| author | Mark Otto <[email protected]> | 2014-03-16 19:03:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-16 19:03:53 -0700 |
| commit | 2a43e7e78a59c70e217383c12c9ef0482cabb163 (patch) | |
| tree | 8fc0b4560d171f63efb353d4c9965aa5c761d82c /docs/_includes/components/wells.html | |
| parent | bdb70fa471965728609d86c001384791fa44398b (diff) | |
| download | bootstrap-2a43e7e78a59c70e217383c12c9ef0482cabb163.tar.xz bootstrap-2a43e7e78a59c70e217383c12c9ef0482cabb163.zip | |
Break up docs into includes
Diffstat (limited to 'docs/_includes/components/wells.html')
| -rw-r--r-- | docs/_includes/components/wells.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/_includes/components/wells.html b/docs/_includes/components/wells.html new file mode 100644 index 000000000..56e5fa098 --- /dev/null +++ b/docs/_includes/components/wells.html @@ -0,0 +1,33 @@ +<div class="bs-docs-section"> + <h1 id="wells" class="page-header">Wells</h1> + + <h3>Default well</h3> + <p>Use the well as a simple effect on an element to give it an inset effect.</p> + <div class="bs-example"> + <div class="well"> + Look, I'm in a well! + </div> + </div> +{% highlight html %} +<div class="well">...</div> +{% endhighlight %} + <h3>Optional classes</h3> + <p>Control padding and rounded corners with two optional modifier classes.</p> + <div class="bs-example"> + <div class="well well-lg"> + Look, I'm in a large well! + </div> + </div> +{% highlight html %} +<div class="well well-lg">...</div> +{% endhighlight %} + + <div class="bs-example"> + <div class="well well-sm"> + Look, I'm in a small well! + </div> + </div> +{% highlight html %} +<div class="well well-sm">...</div> +{% endhighlight %} +</div> |
