Skip to content
forked from twbs/bootstrap

Bootstrap 3 but for modern web browsers.

License

Notifications You must be signed in to change notification settings

Rundiz/bootstrap3

 
 

Repository files navigation

Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by Mark Otto and Jacob Thornton, and maintained by the core team with the massive support and involvement of the community.

To get started, check out https://getbootstrap.com/!

What's new.

This repository is a fork of original Bootstrap but keep only version 3. This is to make it use new functions and syntax and work with modern web browsers.
There is no new or extra features than original Bootstrap 3 and no new feature request here.

See a demo

Table of contents

Limitations

This repo. use CSS variable for example --background-color: #fff; and background-color: var(--background-color);. So, it does not supported Internet Explorer (IE). If you would like to use old browsers, please use original Bootstrap 3.

This repo. use CSS relative color syntax and it currently does not supported in all web browsers yet. Please check for current support on a link.

Quick start

Several quick start options are available:

Read the Getting started page for information on the framework contents, templates and examples, and more.

What's included

Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:

bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.css.map
│   ├── bootstrap.min.css
│   ├── bootstrap.min.css.map
│   ├── bootstrap-theme.css
│   ├── bootstrap-theme.css.map
│   ├── bootstrap-theme.min.css
│   └── bootstrap-theme.min.css.map
├── js/
│   ├── bootstrap.js
│   └── bootstrap.min.js
└── fonts/
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    ├── glyphicons-halflings-regular.woff
    └── glyphicons-halflings-regular.woff2

We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). CSS source maps (bootstrap.*.map) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.

Bugs and feature requests

Have a bug or a feature request? Please first read the issue guidelines and search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.

Do not accept feature requests. This repository is for make Bootstrap 3 using modern functions, syntax to use with moder web browsers but keep original features of Bootstrap 3. No new feature requests.

Documentation

Bootstrap's documentation, included in this repo in the root directory, is built with Jekyll and publicly hosted on GitHub Pages at https://getbootstrap.com/. The docs may also be run locally.

Running documentation locally

Use local command

  1. If necessary, install Jekyll and other Ruby dependencies with bundle install. Note for Windows users: Read this guide to get Jekyll up and running without problems.
  2. From the root /bootstrap directory, run bundle exec jekyll serve in the command line.
  3. Open http://localhost:9001 in your browser, and voilà.

Use Docker

  1. Install Docker and then install Docker image named jekyll via command docker pull jekyll/jekyll:3.8.6.
  2. From the root /bootstrap directory, run Docker image via command docker run --rm -it --volume="%cd%:/srv/jekyll" --publish 9001:9001 jekyll/jekyll:3.8.6 jekyll serve. You may replace %cd% to $PWD on Linux.
    Or you may use command docker run --rm -it --volume="%cd%:/srv/jekyll" --publish 9001:9001 --publish 35729:35729 jekyll/jekyll:3.8.6 jekyll serve --watch --force_polling --livereload to make it auto regenerate the document and live reload on Windows.
  3. Open http://localhost:9001/docs/3.4/ in your browser.

Learn more about using Jekyll by reading its documentation.

Contributing

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

Moreover, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the Code Guide, maintained by Mark Otto.

Bootstrap v3 is now closed off to new features.

Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at https://editorconfig.org/.

Community

Get updates on Bootstrap's development and chat with the project maintainers and community members.

  • Follow @getbootstrap on Twitter.
  • Read and subscribe to The Official Bootstrap Blog.
  • Join the official Slack room.
  • Chat with fellow Bootstrappers in IRC. On the irc.freenode.net server, in the ##bootstrap channel.
  • Implementation help may be found at Stack Overflow (tagged twitter-bootstrap-3).
  • Developers should use the keyword bootstrap on packages which modify or add to the functionality of Bootstrap when distributing through npm or similar delivery mechanisms for maximum discoverability.

Versioning

For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to those rules whenever possible.

See the Releases section of our GitHub project for changelogs for each release version of Bootstrap. Release announcement posts on the official Bootstrap blog contain summaries of the most noteworthy changes made in each release.

Creators

Mark Otto

Jacob Thornton

Copyright and license

Code and documentation copyright 2011-2019 Twitter, Inc. Code released under the MIT license. Docs released under Creative Commons.

About

Bootstrap 3 but for modern web browsers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 37.7%
  • Less 25.0%
  • CSS 21.8%
  • HTML 15.5%