Is there a giant 'asset page' of all Bootstrap elements that I can re-style?

HtmlCssWeb ApplicationsTwitter BootstrapFrontend

Html Problem Overview


http://twitter.github.com/bootstrap/base-css.html

See all the example elements, like h1, h2, h3, inputs, etc?

I'm looking for a simple webpage that has every single Bootstrap inputs/forms/elements/etc on it, and nothing else.

Then I can get our designer to modify the base CSS file with his own styles, and can refresh the asset page to see all of his changes and how the entire style guide is shaping up.

It'd be very helpful for our team to refer to, and for our client, so he can see our entire 'look and feel' on one consolidated page.

Does such a page exist anywhere??

Html Solutions


Solution 1 - Html

At time of writing, this is a good one for BS3 http://bootply.com/render/71500

Update Decembre 2013: Bootswatch has a page that is updated regularly http://bootswatch.com/default/

Update March 2018: Bootswatch has been updated for BS4.

Solution 2 - Html

Bootstrap TLDR contains all components in one page: https://anvoz.github.io/bootstrap-tldr/

It's on Github as well: https://github.com/anvoz/bootstrap-tldr

Solution 3 - Html

I have been looking for a similar thing. The best I've found is this website, which also allows you to edit the css on it.

http://pikock.github.io/bootstrap-magic/app/index.html#!/editor

Solution 4 - Html

I had the exact same need, bootstrap has this ready for you:

  1. go to http://twitter.github.io/bootstrap/getting-started.html and download Bootstrap Source

  2. unzip and navigate to "less\tests"

  3. there you'll find, as bootstrap puts it "One stop shop for quick debugging and edge-case tests of CSS"

Solution 5 - Html

I couldn't find one, so I created my own. I basically combined all the example pages of the documentation and stripped out all the descriptions and codes. I also removed some duplicates.

Based on Bootstrap v4.0.0-alpha.6

https://github.com/gavsiu/bootstrap-demo

Solution 6 - Html

What you could do is customise the bootstrap docs site to use your stylesheet. It's included in the bootstrap repo at (on github at https://github.com/twitter/bootstrap/blob/master/docs/index.html).

To use a different stylesheet you'll need to update https://github.com/twitter/bootstrap/blob/master/docs/templates/layout.mustache to point to your stylesheet:

<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="assets/css/docs.css" rel="stylesheet">
<link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet">
<!-- add your stylesheet here to override -->

and then build using:

$ node docs/build production

Solution 7 - Html

take a look here, a full list of CSS and components, with some explanation and code snipets:

http://codepen.io/letanure/full/WxwaZP/

Some days ago I need the same thing, dont find anything as I need, so I created this one.

randon piece of code, because stackoverflow require if post a link to codepen

<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Bootstrap all elements</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  <!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">

  <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.5.10/clipboard.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>

</head>

<body>

  

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser72245View Question on Stackoverflow
Solution 1 - HtmlDavid De SloovereView Answer on Stackoverflow
Solution 2 - HtmlJan BeckView Answer on Stackoverflow
Solution 3 - HtmlalexjjView Answer on Stackoverflow
Solution 4 - HtmlgfilippouView Answer on Stackoverflow
Solution 5 - HtmlgavsiuView Answer on Stackoverflow
Solution 6 - HtmlopsbView Answer on Stackoverflow
Solution 7 - HtmlLuiz TanureView Answer on Stackoverflow