Bootstrap
10 |Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
11 |12 | Download Bootstrap 13 | Download source 14 |
15 |├── CNAME ├── assets ├── ico │ ├── favicon.png │ └── apple-touch-icon-144-precomposed.png ├── js │ ├── raw-files.js │ ├── html5shiv.js │ ├── application.js │ └── respond.min.js └── css │ └── pygments-manni.css ├── examples ├── navbar │ ├── navbar.css │ └── index.html ├── screenshots │ ├── grid.jpg │ ├── navbar.jpg │ ├── theme.jpg │ ├── carousel.jpg │ ├── jumbotron.jpg │ ├── offcanvas.jpg │ ├── sign-in.jpg │ ├── justified-nav.jpg │ ├── navbar-fixed.jpg │ ├── navbar-static.jpg │ ├── non-responsive.jpg │ ├── sticky-footer.jpg │ ├── jumbotron-narrow.jpg │ ├── starter-template.jpg │ └── sticky-footer-navbar.jpg ├── navbar-fixed-top │ ├── navbar-fixed-top.css │ └── index.html ├── navbar-static-top │ ├── navbar-static-top.css │ └── index.html ├── starter-template │ ├── starter-template.css │ └── index.html ├── jumbotron │ ├── jumbotron.css │ └── index.html ├── offcanvas │ ├── offcanvas.js │ └── offcanvas.css ├── theme │ └── theme.css ├── grid │ └── grid.css ├── sticky-footer │ ├── sticky-footer.css │ └── index.html ├── signin │ ├── signin.css │ └── index.html ├── sticky-footer-navbar │ ├── sticky-footer-navbar.css │ └── index.html ├── jumbotron-narrow │ ├── jumbotron-narrow.css │ └── index.html ├── justified-nav │ ├── justified-nav.css │ └── index.html ├── non-responsive │ ├── non-responsive.css │ └── index.html └── carousel │ └── carousel.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── dist └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── .editorconfig ├── bower.json ├── js ├── .jshintrc ├── tests │ ├── unit │ │ ├── transition.js │ │ ├── affix.js │ │ ├── scrollspy.js │ │ ├── alert.js │ │ ├── phantom.js │ │ ├── tab.js │ │ └── button.js │ └── index.html ├── transition.js ├── alert.js ├── button.js ├── popover.js ├── tab.js ├── affix.js ├── dropdown.js └── scrollspy.js ├── _includes ├── ads.html ├── old-bs-docs.html ├── social-buttons.html ├── nav-getting-started.html ├── footer.html ├── nav-main.html ├── header.html ├── nav-customize.html ├── nav-javascript.html ├── nav-css.html └── nav-components.html ├── .travis.yml ├── .gitignore ├── composer.json ├── less ├── breadcrumbs.less ├── component-animations.less ├── wells.less ├── thumbnails.less ├── utilities.less ├── close.less ├── jumbotron.less ├── media.less ├── pager.less ├── badges.less ├── labels.less ├── bootstrap.less ├── code.less ├── alerts.less ├── print.less ├── pagination.less ├── list-group.less ├── progress-bars.less ├── scaffolding.less ├── tooltip.less ├── modals.less ├── popovers.less ├── input-groups.less ├── buttons.less ├── panels.less ├── dropdowns.less └── carousel.less ├── index.html ├── browserstack.json ├── _config.yml ├── package.json ├── _layouts ├── home.html └── default.html └── CONTRIBUTING.md /CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/assets/ico/favicon.png -------------------------------------------------------------------------------- /assets/js/raw-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/assets/js/raw-files.js -------------------------------------------------------------------------------- /examples/navbar/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 30px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 30px; 7 | } -------------------------------------------------------------------------------- /examples/screenshots/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/grid.jpg -------------------------------------------------------------------------------- /examples/navbar-fixed-top/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /examples/screenshots/navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/navbar.jpg -------------------------------------------------------------------------------- /examples/screenshots/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/theme.jpg -------------------------------------------------------------------------------- /examples/screenshots/carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/carousel.jpg -------------------------------------------------------------------------------- /examples/screenshots/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/jumbotron.jpg -------------------------------------------------------------------------------- /examples/screenshots/offcanvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/offcanvas.jpg -------------------------------------------------------------------------------- /examples/screenshots/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/sign-in.jpg -------------------------------------------------------------------------------- /examples/screenshots/justified-nav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/justified-nav.jpg -------------------------------------------------------------------------------- /examples/screenshots/navbar-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/navbar-fixed.jpg -------------------------------------------------------------------------------- /examples/screenshots/navbar-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/navbar-static.jpg -------------------------------------------------------------------------------- /examples/screenshots/non-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/non-responsive.jpg -------------------------------------------------------------------------------- /examples/screenshots/sticky-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/sticky-footer.jpg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/screenshots/jumbotron-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/jumbotron-narrow.jpg -------------------------------------------------------------------------------- /examples/screenshots/starter-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/starter-template.jpg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/screenshots/sticky-footer-navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/examples/screenshots/sticky-footer-navbar.jpg -------------------------------------------------------------------------------- /assets/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/bootstrap/master/assets/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /examples/navbar-static-top/navbar-static-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | } 4 | 5 | .navbar-static-top { 6 | margin-bottom: 19px; 7 | } -------------------------------------------------------------------------------- /examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | .starter-template { 5 | padding: 40px 15px; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('[data-toggle=offcanvas]').click(function() { 3 | $('.row-offcanvas').toggleClass('active'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "version": "3.0.0", 4 | "main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css", "./dist/fonts/*"], 5 | "ignore": [ 6 | "**/.*" 7 | ], 8 | "dependencies": { 9 | "jquery": ">= 1.9.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/theme/theme.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | padding-bottom: 30px; 4 | } 5 | 6 | .theme-dropdown .dropdown-menu { 7 | display: block; 8 | position: static; 9 | margin-bottom: 20px; 10 | } 11 | 12 | .theme-showcase > p > .btn { 13 | margin: 5px 0; 14 | } -------------------------------------------------------------------------------- /js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "validthis": true, 3 | "laxcomma" : true, 4 | "laxbreak" : true, 5 | "browser" : true, 6 | "eqeqeq" : false, 7 | "eqnull" : true, 8 | "debug" : true, 9 | "devel" : true, 10 | "curly" : false, 11 | "boss" : true, 12 | "expr" : true, 13 | "asi" : true 14 | } -------------------------------------------------------------------------------- /_includes/ads.html: -------------------------------------------------------------------------------- 1 |
Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
11 |12 | Download Bootstrap 13 | Download source 14 |
15 |Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.
36 |Use the sticky footer with a fixed navbar if need be, too.
37 |Holy guacamole! Best check yo self, you\'re not looking too good.
' 23 | + 'Use this document as a way to quickly start any new project.
All you get is this text and a mostly barebones HTML document.
{{ page.lead }}
18 | {% include ads.html %} 19 |Cras justo odio, dapibus ac facilisis in, egestas eget quam. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
40 | 41 |Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.
47 | 48 |Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.
50 | 51 |Maecenas sed diam eget risus varius blandit sit amet non magna.
53 |Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.
58 | 59 |Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.
61 | 62 |Maecenas sed diam eget risus varius blandit sit amet non magna.
64 |Cras justo odio, dapibus ac facilisis in, egestas eget quam. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet.
45 | 46 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
53 | 54 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
58 | 59 |Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.
63 | 64 |This example is a quick exercise to illustrate how the default, static navbar and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.
69 |70 | View navbar docs » 71 |
72 |This example is a quick exercise to illustrate how the default, static and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.
71 |To see the difference between static and fixed top navbars, just scroll.
72 |73 | View navbar docs » 74 |
75 |This example is a quick exercise to illustrate how the default, static and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.
72 |To see the difference between static and fixed top navbars, just scroll.
73 |74 | View navbar docs » 75 |
76 |Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added within #wrap with padding-top: 60px; on the .container.
Back to the default sticky footer minus the navbar.
70 |Disable the responsiveness of Bootstrap by fixing the width of the container and using the first grid system tier.
72 |Note the lack of the <meta name="viewport" content="width=device-width, initial-scale=1.0">, which disables the zooming aspect of sites in mobile devices. In addition, we reset our container's width and are basically good to go.
As a heads up, the navbar component is rather tricky here in that the styles for displaying it are rather specific and detailed. Overrides to ensure desktop styles display are not as performant or sleek as one would like. Just be aware there may be potential gotchas as you build on top of this example when using the navbar.
79 | 80 |This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.
56 | 57 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
66 | 67 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
71 | 72 |Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
76 | 77 |