index.html 65.4 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
                <input class="small" type="text" value="May 8, 2011" />
                <input class="mini" type="text" value="11:59pm" />
                <span class="help-inline">All times are shown as Pacific Standard Time (GMT -08:00).</span>
              </div>
            </div>
          </div> <!-- /clearfix -->
          <div class="clearfix">
            <label for="textarea">Textarea</label>
            <div class="input">
              <textarea class="xxlarge" id="textarea" name="textarea"></textarea>
              <span class="help-block">
                Block of help text to describe the field above if need be.
              </span>
            </div>
          </div> <!-- /clearfix -->
          <div class="clearfix">
            <label id="optionsRadio">List of Options</label>
            <div class="input">
              <ul class="inputs-list">
                <li>
                  <label>
                    <input type="checkbox" name="optionsCheckboxes" value="option1" />
                    <span>Option one is this and that&mdash;be sure to include why it’s great</span>
                  </label>
                </li>
                <li>
                  <label>
                    <input type="checkbox" name="optionsCheckboxes" value="option2" />
                    <span>Option two can also be checked and included in form results</span>
                  </label>
                </li>
              </ul>
            </div>
          </div> <!-- /clearfix -->
          <div class="actions">
            <button type="submit" class="btn primary">Save Changes</button>
            <button type="reset" class="btn">Cancel</button>
1038
          </div>
Mark Otto's avatar
Mark Otto committed
1039
        </fieldset>
1040
>>>>>>> f169c99f726c250f0bb2f68ea4eedaaf3fbe15c0
Jacob Thornton's avatar
Jacob Thornton committed
1041
      </form>
1042
    </div>
Mark Otto's avatar
Mark Otto committed
1043
  </div> <!-- /row -->
1044

Mark Otto's avatar
Mark Otto committed
1045
  <br />
1046

Mark Otto's avatar
Mark Otto committed
1047
1048
1049
1050
  <div class="row">
    <div class="span4 columns">
      <h2>Stacked forms</h2>
      <p>Add <code>.form-stacked</code> to your form’s HTML and you’ll have labels on top of their fields instead of to their left. This works great if your forms are short or you have two columns of inputs for heavier forms.</p>
1051
    </div>
Mark Otto's avatar
Mark Otto committed
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
    <div class="span12 columns">
      <form action="" class="form-stacked">
        <fieldset>
          <legend>Example form legend</legend>
          <div class="clearfix">
            <label for="">X-Large Input</label>
            <div class="input">
              <input class="xlarge" id="xlInput" name="xlInput" size="30" type="text" />
            </div>
          </div> <!-- /clearfix -->
          <div class="clearfix">
            <label for="">Select</label>
            <div class="input">
              <select>
                <option>1</option>
                <option>2</option>
                <option>3</option>
                <option>4</option>
                <option>5</option>
              </select>
            </div>
          </div> <!-- /clearfix -->
        </fieldset>
        <fieldset>
          <legend>Example form legend</legend>
1077
1078
1079
1080
1081
1082
1083
          <div class="clearfix error">
            <label for="xlInput">X-Large Input</label>
            <div class="input">
              <input class="xlarge error" id="xlInput" name="xlInput" size="30" type="text" />
              <span class="help-inline">Small snippet of help text</span>
            </div>
          </div> <!-- /clearfix -->
Mark Otto's avatar
Mark Otto committed
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
          <div class="clearfix">
            <label id="optionsCheckboxes">List of Options</label>
            <div class="input">
              <ul class="inputs-list">
                <li>
                  <label>
                    <input type="checkbox" name="optionsCheckboxes" value="option1" />
                    <span>Option one is this and that&mdash;be sure to include why it’s great</span>
                  </label>
                </li>
                <li>
                  <label>
                    <input type="checkbox" name="optionsCheckboxes" value="option2" />
                    <span>Option two can also be checked and included in form results</span>
                  </label>
                </li>
              </ul>
              <span class="help-block">
                <strong>Note:</strong> Labels surround all the options for much larger click areas and a more usable form.
              </span>
            </div>
          </div> <!-- /clearfix -->
        </fieldset>
        <div class="actions">
          <button type="submit" class="btn primary">Save Changes</button>
          <button type="reset" class="btn">Cancel</button>
        </div>
      </form>
1112
    </div>
Mark Otto's avatar
Mark Otto committed
1113
1114
1115
1116
1117
1118
1119
  </div> <!-- /row -->

  <div class="row">
    <div class="span4 columns">
      <h2>Buttons</h2>
      <p>As a convention, buttons are used for actions while links are used for objects. For instance, "Download" could be a button and "recent activity" could be a link.</p>
      <p>All buttons default to a light gray style, but a blue <code>.primary</code> class is available. Plus, rolling your own styles is easy peasy.</p>
1120
    </div>
1121
<<<<<<< HEAD
1122
1123
    <h4>Buttons</h4>
    <div class="well">
Jacob Thornton's avatar
Jacob Thornton committed
1124
      <form>
Jacob Thornton's avatar
Jacob Thornton committed
1125
        <button class="btn large primary disabled" disabled>Primary action</button>&nbsp;<button class="btn large disabled" disabled>Action</button>
Jacob Thornton's avatar
Jacob Thornton committed
1126
      </form>
1127
=======
Mark Otto's avatar
Mark Otto committed
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
    <div class="span12 columns">
      <h3>Example buttons</h3>
      <p>Button styles can be applied to anything with the <code>.btn</code> applied. Typically you’ll want to apply these to only <code>&lt;a&gt;</code>, <code>&lt;button&gt;</code>, and select <code>&lt;input&gt;</code> elements. Here’s how it looks:</p>
      <div class="well" style="padding: 14px 19px;">
        <button type="submit" class="btn primary">Submit</button>
        <button type="submit" class="btn">Cancel</button>
      </div>
      <h3>Alternate sizes</h3>
      <p>Fancy larger or smaller buttons? Have at it!</p>
      <div class="well">
        <a href="#" class="btn large primary">Primary action</a>
        <a href="#" class="btn large">Action</a>
      </div>
      <div class="well" style="padding: 16px 19px;">
        <a href="#" class="btn small primary">Primary action</a>
        <a href="#" class="btn small">Action</a>
      </div>
      <h3>Disabled state</h3>
      <p>For buttons that are not active or are disabled by the app for one reason or another, use the disabled state. That’s <code>.disabled</code> for links and <code>:disabled</code> for <code>&lt;button&gt;</code> elements.</p>
      <h4>Links</h4>
      <div class="well">
        <a href="#" class="btn large primary disabled">Primary action</a>
        <a href="#" class="btn large disabled">Action</a>
      </div>
      <h4>Buttons</h4>
      <div class="well">
        <button class="btn large primary" disabled>Primary action</button>
        <button class="btn large" disabled>Action</button>
      </div>
1157
>>>>>>> f169c99f726c250f0bb2f68ea4eedaaf3fbe15c0
1158
    </div>
Mark Otto's avatar
Mark Otto committed
1159
  </div> <!-- /row -->
1160
1161
1162
1163
</section>



Mark Otto's avatar
Mark Otto committed
1164
1165
<!-- Navigation
================================================== -->
1166
<section id="navigation">
Mark Otto's avatar
Mark Otto committed
1167
1168
1169
  <div class="page-header">
    <h1>Navigation</h1>
  </div>
1170

Mark Otto's avatar
Mark Otto committed
1171
  <h2>Fixed topbar</h2>
1172
  <div class="topbar-wrapper" style="z-index: 5;">
Mark Otto's avatar
Mark Otto committed
1173
    <div class="topbar">
Jacob Thornton's avatar
Jacob Thornton committed
1174
      <div class="fill">
1175
        <div class="container">
Jacob Thornton's avatar
Jacob Thornton committed
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
          <h3><a href="#">Project Name</a></h3>
          <ul>
            <li class="active"><a href="#">Home</a></li>
            <li><a href="#">Link</a></li>
            <li><a href="#">Link</a></li>
            <li><a href="#">Link</a></li>
          </ul>
          <form action="">
            <input type="text" placeholder="Search" />
          </form>
          <ul class="nav secondary-nav">
            <li class="menu">
              <a href="#" class="menu">Dropdown</a>
              <ul class="menu-dropdown">
                <li><a href="#">Secondary link</a></li>
                <li><a href="#">Something else here</a></li>
                <li class="divider"></li>
                <li><a href="#">Another link</a></li>
              </ul>
            </li>
          </ul>
        </div>
1198
1199
      </div> <!-- /fill -->
    </div> <!-- /topbar -->
Mark Otto's avatar
Mark Otto committed
1200
  </div> <!-- topbar-wrapper -->
1201

Mark Otto's avatar
Mark Otto committed
1202
  <div class="row">
1203
1204
    <div class="span5 columns">
      <h4>What is it</h4>
1205
      <p>Our topbar is a fixed bar that houses a website’s logo or name, primary navigation, and search form.</p>
Mark Otto's avatar
Mark Otto committed
1206
    </div>
1207
1208
1209
1210
    <div class="span5 columns">
      <h4>Customizable</h4>
      <p>All elements within, and the entire topbar as well, are optional. You can choose to include a logo/name, nav, search, and a secondary nav&mdash;or any combination of that.</p>
    </div>
Mark Otto's avatar
Mark Otto committed
1211
    <div class="span6 columns">
1212
      <h4>Dropdowns included</h4>
1213
      <p>As part of the main navigation, we’ve included the ability for you to add dropdowns to your nav. Check out the secondary nav above (right aligned) to see how it’s done.</p>
Mark Otto's avatar
Mark Otto committed
1214
1215
1216
1217
    </div>
  </div>

  <br />
1218

1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
  <div class="row">
    <div class="span4 columns">
      <h2>Tabs and pills</h2>
      <p>Create simple secondary navigation with a <code>&lt;ul&gt;</code>. Swap between tabs or pills by adding the appropriate class.</p>
      <p>Great for sub-sections of content like our account settings pages and user timelines for toggling between pages of like content. Available in tabbed or pill styles.</p>
    </div>
    <div class="span12 columns">
      <ul class="tabs">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">Profile</a></li>
        <li><a href="#">Messages</a></li>
        <li><a href="#">Settings</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
1233
<pre class="prettyprint linenums">
1234
&lt;ul class="tabs"&gt;
Mark Otto's avatar
Mark Otto committed
1235
1236
1237
1238
1239
  &lt;li class="active"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Profile&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Messages&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Settings&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Contact&lt;/a&gt;&lt;/li&gt;
1240
1241
&lt;/ul&gt;
</pre>
1242
1243
1244
1245
1246
1247
1248
      <ul class="pills">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">Profile</a></li>
        <li><a href="#">Messages</a></li>
        <li><a href="#">Settings</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
1249
<pre class="prettyprint linenums">
1250
&lt;ul class="pills"&gt;
Mark Otto's avatar
Mark Otto committed
1251
1252
1253
1254
1255
  &lt;li class="active"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Profile&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Messages&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Settings&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Contact&lt;/a&gt;&lt;/li&gt;
1256
1257
1258
&lt;/ul&gt;
</pre>
    </div>
1259
1260
1261
1262
1263
1264
1265
  </div> <!-- /row -->

  <!-- Pagination -->
  <div class="row">
    <div class="span4 columns">
      <h2>Pagination</h2>
      <p>Ultra simplistic and minimally styled pagination inspired by Rdio. The large block is hard to miss, easily scalable, and provides large click areas.</p>
1266
    </div>
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
    <div class="span12 columns">
      <div class="pagination">
        <ul>
          <li class="prev disabled"><a href="#">&larr; Previous</a></li>
          <li class="active"><a href="#">1</a></li>
          <li><a href="#">2</a></li>
          <li><a href="#">3</a></li>
          <li><a href="#">4</a></li>
          <li><a href="#">5</a></li>
          <li class="next"><a href="#">Next &rarr;</a></li>
        </ul>
      </div>
      <div class="pagination">
        <ul>
          <li class="prev"><a href="#">&larr; Previous</a></li>
          <li class="active"><a href="#">10</a></li>
          <li><a href="#">11</a></li>
          <li><a href="#">12</a></li>
          <li class="disabled"><a href="#"></a></li>
          <li><a href="#">19</a></li>
          <li><a href="#">20</a></li>
          <li><a href="#">21</a></li>
          <li class="next"><a href="#">Next &rarr;</a></li>
        </ul>
      </div>
      <div class="pagination">
        <ul>
          <li class="prev"><a href="#">&larr; Previous</a></li>
          <li><a href="#">10</a></li>
          <li><a href="#">11</a></li>
          <li><a href="#">12</a></li>
          <li><a href="#">13</a></li>
          <li><a href="#">14</a></li>
          <li class="active"><a href="#">15</a></li>
          <li><a href="#">16</a></li>
          <li><a href="#">17</a></li>
          <li><a href="#">18</a></li>
          <li><a href="#">19</a></li>
          <li><a href="#">20</a></li>
          <li class="next"><a href="#">Next &rarr;</a></li>
        </ul>
      </div>
1309
<pre class="prettyprint linenums">
1310
1311
&lt;div class="pagination"&gt;
  &lt;ul&gt;
Mark Otto's avatar
Mark Otto committed
1312
1313
1314
1315
1316
1317
1318
    &lt;li class="prev disabled"&gt;&lt;a href="#"&gt;&amp;larr; Previous&lt;/a&gt;&lt;/li>
    &lt;li class="active"&gt;&lt;a href="#"&gt;1&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;2&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;3&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;4&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;5&lt;/a&gt;&lt;/li&gt;
    &lt;li class="next"&gt;&lt;a href="#"&gt;Next &amp;rarr;&lt;/a&gt;&lt;/li>
1319
1320
1321
  &lt;/ul&gt;
&lt;/div&gt;
</pre>
1322
1323
    </div>
  </div> <!-- /row -->
1324
1325
1326
1327
1328

</section>



Mark Otto's avatar
Mark Otto committed
1329
1330
<!-- Alerts & Messages
================================================== -->
1331
1332
<section id="alerts">
  <div class="page-header">
1333
1334
    <h1>Alerts &amp; Errors <small>Styles for success, warning, and error messages or alerts</small></h1>
  </div>
1335
  <!-- Basic alert messages -->
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
  <div class="row">
    <div class="span4 columns">
      <h2>Basic alerts</h2>
      <p>One-line messages for highlighting the failure, possible failure, or success of an action. Particularly useful for forms.</p>
    </div>
    <div class="span12 columns">
      <div class="alert-message error">
        <a class="close" href="#">&times;</a>
        <p><strong>Oh snap!</strong> Change this and that and try again.</p>
      </div>
      <div class="alert-message warning">
        <a class="close" href="#">&times;</a>
1348
        <p><strong>Holy gaucamole!</strong> Best check yo self, you’re not looking too good.</p>
1349
1350
1351
1352
1353
1354
1355
      </div>
      <div class="alert-message success">
        <a class="close" href="#">&times;</a>
        <p><strong>Well done!</strong> You successfully read this alert message.</p>
      </div>
      <div class="alert-message info">
        <a class="close" href="#">&times;</a>
1356
        <p><strong>Heads up!</strong> This is an alert that needs your attention, but it’s not a huge priority just yet.</p>
1357
1358
      </div>
    </div>
1359
1360
  </div> <!-- /row -->
  <!-- Block messages -->
1361
1362
1363
1364
1365
1366
1367
1368
1369
  <div class="row">
    <div class="span4 columns">
      <h2>Block messages</h2>
      <p>For messages that require a bit of explanation, we have paragraph style alerts. These are perfect for bubbling up longer error messages, warning a user of a pending action, or just presenting information for more emphasis on the page.</p>
    </div>
    <div class="span12 columns">
      <div class="alert-message block-message error">
        <a class="close" href="#">&times;</a>
        <p><strong>Oh snap! You got an error!</strong> Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.</p>
Mark Otto's avatar
Mark Otto committed
1370
        <p><a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a></p>
1371
1372
1373
      </div>
      <div class="alert-message block-message warning">
        <a class="close" href="#">&times;</a>
1374
        <p><strong>Holy gaucamole! This is a warning!</strong> Best check yo self, you’re not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p>
Mark Otto's avatar
Mark Otto committed
1375
        <p><a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a></p>
1376
1377
1378
1379
      </div>
      <div class="alert-message block-message success">
        <a class="close" href="#">&times;</a>
        <p><strong>Well done!</strong> You successfully read this alert message. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas faucibus mollis interdum.</p>
Mark Otto's avatar
Mark Otto committed
1380
        <p><a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a></p>
1381
1382
1383
      </div>
      <div class="alert-message block-message info">
        <a class="close" href="#">&times;</a>
1384
        <p><strong>Heads up!</strong> This is an alert that needs your attention, but it’s not a huge priority just yet.</p>
Mark Otto's avatar
Mark Otto committed
1385
        <p><a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a></p>
1386
1387
      </div>
    </div>
1388
  </div> <!-- /row -->
1389
1390
1391
</section>


Mark Otto's avatar
Mark Otto committed
1392
1393
<!-- Popovers
================================================== -->
Mark Otto's avatar
Mark Otto committed
1394
<section id="popovers">
Jacob Thornton's avatar
Jacob Thornton committed
1395
  <div class="page-header">
Mark Otto's avatar
Mark Otto committed
1396
    <h1>Popovers <small>Components for displaying content in modals, tooltips, and popovers</small></h1>
Jacob Thornton's avatar
Jacob Thornton committed
1397
1398
1399
  </div>
  <div class="row">
    <div class="span4 columns">
Mark Otto's avatar
Mark Otto committed
1400
      <h2>Modals</h2>
1401
      <p>Modals&mdash;dialogs or lightboxes&mdash;are great for contextual actions in situations where it’s important that the background context be maintained.</p>
Jacob Thornton's avatar
Jacob Thornton committed
1402
1403
    </div>
    <div class="span12 columns">
Jacob Thornton's avatar
Jacob Thornton committed
1404
      <div class="well" style="background-color: #888; border: none; padding: 40px;">
1405
        <!-- Modal -->
1406
        <div class="modal" style="position: relative; top: auto; left: auto; margin: 0 auto; z-index: 1">
Jacob Thornton's avatar
Jacob Thornton committed
1407
          <div class="modal-header">
1408
            <h3>Modal Heading</h3>
Jacob Thornton's avatar
Jacob Thornton committed
1409
1410
1411
            <a href="#" class="close">&times;</a>
          </div>
          <div class="modal-body">
1412
            <p>One fine body…</p>
Jacob Thornton's avatar
Jacob Thornton committed
1413
1414
          </div>
          <div class="modal-footer">
Mark Otto's avatar
Mark Otto committed
1415
1416
            <a href="#" class="btn primary">Primary</a>
            <a href="#" class="btn secondary">Secondary</a>
Jacob Thornton's avatar
Jacob Thornton committed
1417
1418
1419
          </div>
        </div>
      </div>
1420
1421
1422
    </div>
  </div> <!-- /row -->

1423
  <!-- Tooltips -->
1424
1425
1426
1427
1428
1429
1430
1431
1432
  <div class="row">
    <div class="span4 columns">
      <h2>Tool Tips</h2>
      <p>Twipsies are super useful for aiding a confused user and pointing them in the right direction.</p>
    </div>
    <div class="span12 columns">
      <div class="twipsies well">
        <div style="position: relative">
          <p class="muted" style="margin-bottom: 0">
Jacob Thornton's avatar
Jacob Thornton committed
1433
Lorem ipsum dolar sit amet illo error <a href="#" title="below">ipsum</a> veritatis aut iste perspiciatis iste voluptas natus illo quasi odit aut natus consequuntur consequuntur, aut natus illo voluptatem odit perspiciatis laudantium rem doloremque totam voluptas. <a href="#" title="right">Voluptasdicta</a> eaque beatae aperiam ut enim voluptatem explicabo explicabo, voluptas quia odit fugit accusantium totam totam architecto explicabo sit quasi fugit fugit, totam doloremque unde sunt <a href="#" title="left">sed</a> dicta quae accusantium fugit voluptas nemo voluptas voluptatem <a href="#" title="above">rem</a> quae aut veritatis quasi quae.
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
          </p>
          <div class="twipsy below">
            <div class="twipsy-arrow"></div>
            <div class="twipsy-inner">below!</div>
          </div>
          <div class="twipsy right">
            <div class="twipsy-arrow"></div>
            <div class="twipsy-inner">right!</div>
          </div>
          <div class="twipsy left">
            <div class="twipsy-arrow"></div>
            <div class="twipsy-inner">left!</div>
          </div>
          <div class="twipsy above">
            <div class="twipsy-arrow"></div>
            <div class="twipsy-inner">above!</div>
Jacob Thornton's avatar
Jacob Thornton committed
1450
1451
1452
1453
          </div>
        </div>
      </div>
    </div>
Mark Otto's avatar
Mark Otto committed
1454
  </div> <!-- /row -->
Jacob Thornton's avatar
Jacob Thornton committed
1455

1456
  <!-- Popovers -->
Mark Otto's avatar
Mark Otto committed
1457
1458
1459
  <div class="row">
    <div class="span4 columns">
      <h2>Popovers</h2>
Mark Otto's avatar
Mark Otto committed
1460
      <p>Use popovers to provide subtextual information to a page without affecting layout.</p>
Mark Otto's avatar
Mark Otto committed
1461
1462
1463
    </div>
    <div class="span12 columns">
      <div class="well popover-well">
Jacob Thornton's avatar
Jacob Thornton committed
1464
1465
         <div class="popover-wrapper">
          <div class="popover left">
Mark Otto's avatar
Mark Otto committed
1466
1467
            <div class="arrow"></div>
            <div class="inner">
Jacob Thornton's avatar
Jacob Thornton committed
1468
              <h3 class="title">Popover Title</h3>
Mark Otto's avatar
Mark Otto committed
1469
1470
1471
1472
1473
              <div class="content">
                <p>Etiam porta sem malesuada magna mollis euismod. Maecenas faucibus mollis interdum. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
              </div>
            </div>
          </div>
1474
          <img class="large-bird" src="assets/img/bird.png" width="220px" height="145px">
Mark Otto's avatar
Mark Otto committed
1475
1476
1477
1478
        </div>
      </div>
    </div>
  </div> <!-- /row -->
Jacob Thornton's avatar
Jacob Thornton committed
1479
</section>
1480

Mark Otto's avatar
Mark Otto committed
1481

Mark Otto's avatar
Mark Otto committed
1482

Mark Otto's avatar
Mark Otto committed
1483
1484
<!-- Using Bootstrap w/ Less
================================================== -->
1485
<section id="less">
Mark Otto's avatar
Mark Otto committed
1486
<div class="page-header">
1487
  <h1>Using Bootstrap with Less <small>Supercharge your CSS with variables, mixins, and functions</small></h1>
Mark Otto's avatar
Mark Otto committed
1488
1489
1490
</div>
<div class="row">
  <div class="span4 columns">
1491
1492
    <p>Bootstrap was built with <a href="http://markdotto.com/bootstrap/">Preboot</a>, an open-source pack of mixins and variables to be used in conjunction with <a href="http://lesscss.org" target="_blank">Less</a>, a CSS preprocessor for faster and easier web development.</p>
    <p>Check out how we used Preboot in Bootstrap and how you can make use of it should you choose to run Less on your next project.</p>
Mark Otto's avatar
Mark Otto committed
1493
1494
1495
  </div>
  <div class="span12 columns">
    <h2>How to use it</h2>
1496
    <p>Use this option to make full use of Bootstrap’s Less variables, mixins, and nesting in CSS via javascript in your browser.</p>
1497
<pre class="prettyprint linenums">
Jacob Thornton's avatar
Jacob Thornton committed
1498
1499
&lt;link rel="stylesheet/less" href="less/bootstrap.less" media="all" /&gt;
&lt;script src="js/less-1.0.41.min.js"&gt;&lt;/script&gt;</pre>
1500
<p>Not feeling the .js solution? <a href="http://incident57.com/less" target="_blank">Try the Less Mac app</a> or <a href="http://lesscss.org/#-client-side-usage" target="_blank">use Node.js</a> to compile when you deploy your code.</p>
Mark Otto's avatar
Mark Otto committed
1501

1502
1503
    <h2>What’s included</h2>
    <p>Here are some of the highlights of what’s included in Twitter Bootstrap as part of Bootstrap. Head over to the Bootstrap website or Github project page to download and learn more.</p>
Mark Otto's avatar
Mark Otto committed
1504
    <h3>Color variables</h3>
1505
    <p>Variables in Less are perfect for maintaining and updating your CSS headache free. When you want to change a color value or a frequently used value, update it in one spot and you’re set.</p>
1506
<pre class="prettyprint linenums">
Mark Otto's avatar
Mark Otto committed
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
// Links
@linkColor:         #8b59c2;
@linkColorHover:    darken(@linkColor, 10);

// Grays
@black:             #000;
@grayDark:          lighten(@black, 25%);
@gray:              lighten(@black, 50%);
@grayLight:         lighten(@black, 70%);
@grayLighter:       lighten(@black, 90%);
@white:             #fff;

// Accent Colors
@blue:              #08b5fb;
@green:             #46a546;
@red:               #9d261d;
@yellow:            #ffc40d;
@orange:            #f89406;
@pink:              #c3325f;
@purple:            #7a43b6;

// Baseline
@baseline:          20px;
</pre>

<h3>Commenting</h3>
1533
<p>Less also provides another style of commenting in addition to CSS’s normal <code>/* ... */</code> syntax.</p>
1534
<pre class="prettyprint linenums">
Mark Otto's avatar
Mark Otto committed
1535
1536
1537
1538
1539
// This is a comment
/* This is also a comment */
</pre>

<h3>Mixins up the wazoo</h3>
1540
<p>Mixins are basically includes or partials for CSS, allowing you to combine a block of code into one. They’re great for vendor prefixed properties like <code>box-shadow</code>, cross-browser gradients, font stacks, and more. Below is a sample of the mixins that are included with Bootstrap.</p>
Mark Otto's avatar
Mark Otto committed
1541
<h4>Font stacks</h4>
1542
<pre class="prettyprint linenums">
Mark Otto's avatar
Mark Otto committed
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
#font {
  .shorthand(@weight: normal, @size: 14px, @lineHeight: 20px) {
    font-size: @size;
    font-weight: @weight;
    line-height: @lineHeight;
  }
  .sans-serif(@weight: normal, @size: 14px, @lineHeight: 20px) {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: @size;
    font-weight: @weight;
    line-height: @lineHeight;
  }
  .serif(@weight: normal, @size: 14px, @lineHeight: 20px) {
    font-family: "Georgia", Times New Roman, Times, sans-serif;
    font-size: @size;
    font-weight: @weight;
    line-height: @lineHeight;
  }
  .monospace(@weight: normal, @size: 12px, @lineHeight: 20px) {
    font-family: "Monaco", Courier New, monospace;
    font-size: @size;
    font-weight: @weight;
    line-height: @lineHeight;
  }
}
</pre>
<h4>Gradients</h4>
1570
<pre class="prettyprint linenums">
Mark Otto's avatar
Mark Otto committed
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
#gradient {
  .horizontal (@startColor: #555, @endColor: #333) {
    background-color: @endColor;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, right top, from(@startColor), to(@endColor)); // Konqueror
    background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
    background-image: -ms-linear-gradient(left, @startColor, @endColor); // IE10
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
    background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
    background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
1581
1582
    -ms-filter: %("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor); // IE8+
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE6 & IE7
Mark Otto's avatar
Mark Otto committed
1583
1584
1585
1586
1587
    background-image: linear-gradient(left, @startColor, @endColor); // Le standard
  }
  .vertical (@startColor: #555, @endColor: #333) {
    background-color: @endColor;
    background-repeat: repeat-x;
1588
1589
1590
1591
1592
1593
1594
1595
1596
    background-image: -khtml-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); // Konqueror
    background-image: -moz-linear-gradient(@startColor, @endColor); // FF 3.6+
    background-image: -ms-linear-gradient(@startColor, @endColor); // IE10
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
    background-image: -webkit-linear-gradient(@startColor, @endColor); // Safari 5.1+, Chrome 10+
    background-image: -o-linear-gradient(@startColor, @endColor); // Opera 11.10
    -ms-filter: %("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor); // IE8+
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE6 & IE7
    background-image: linear-gradient(@startColor, @endColor); // The standard
Mark Otto's avatar
Mark Otto committed
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
  }
  .directional (@startColor: #555, @endColor: #333, @deg: 45deg) {
    ...
  }
  .vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 0.5, @endColor: #c3325f) {
    ...
  }
}
</pre>

<h3>Operations and grid system</h3>
1608
<p>Get fancy and perform some math to generate flexible and powerful mixins like the one below.</p>
1609
<pre class="prettyprint linenums">
Mark Otto's avatar
Mark Otto committed
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
// Griditude
@gridColumns:       16;
@gridColumnWidth:   40px;
@gridGutterWidth:   20px;

// Grid System
.container {
  width: @siteWidth;
  margin: 0 auto;
  .clearfix();
}
.columns(@columnSpan: 1) {
  display: inline;
  float: left;
  width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1));
  margin-left: @gridGutterWidth;
  &:first-child {
    margin-left: 0;
  }
}
.offset(@columnOffset: 1) {
  margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) !important;
}
</pre>
  </div>
</div>

</section>

1639
1640
    </div> <!-- /container -->

Mark Otto's avatar
Mark Otto committed
1641
1642


1643
1644
1645
    <div id="footer">
      <div class="inner">
        <div class="container">
1646
          <p class="right"><a href="#">Back to top</a></p>
1647
          <p>
1648
            Designed and built with all the love in the world <a href="http://twitter.com/twitter" target="_blank">@twitter</a> by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.<br />
Mark Otto's avatar
Mark Otto committed
1649
            Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>.
1650
          </p>
1651
1652
        </div>
      </div>
1653
1654
1655
    </div>

  </body>
1656
</html>
For faster browsing, not all history is shown. View entire blame