aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/components/wells.html
blob: 56e5fa098f5c79a0ac042553a1ec9eabf5e1c5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>