aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/components
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-09 20:01:55 -0700
committerMark Otto <[email protected]>2014-07-09 20:01:55 -0700
commitc42d943e106bdba57b8fb2e7670c95d0c459c9b5 (patch)
tree80d3d9b3d8e56f0517a45a04824c259957d5a4ad /docs/_includes/components
parentbe877bc691190909b587454e7bb7c89818762338 (diff)
downloadbootstrap-c42d943e106bdba57b8fb2e7670c95d0c459c9b5.tar.xz
bootstrap-c42d943e106bdba57b8fb2e7670c95d0c459c9b5.zip
nuke wells include
Diffstat (limited to 'docs/_includes/components')
-rw-r--r--docs/_includes/components/wells.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/docs/_includes/components/wells.html b/docs/_includes/components/wells.html
deleted file mode 100644
index 56e5fa098..000000000
--- a/docs/_includes/components/wells.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<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>